Date: Fri, 23 Jul 2004 07:30:32 GMT From: chris@e-easy.com.au To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/69430: [PATCH] databases/firebird: patch to fix broken build Message-ID: <200407230730.i6N7UWvE061786@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/69430; it has been noted by GNATS. From: chris@e-easy.com.au To: freebsd-gnats-submit@FreeBSD.org, renato@galle.com.br Cc: chris@e-easy.com.au Subject: Re: ports/69430: [PATCH] databases/firebird: patch to fix broken build Date: Fri, 23 Jul 2004 17:25:53 +1000 (EST) Howdy, Sorry, on further investigation, the correct patch to be committed should be the following. This will perform the correct transliteration regardless of locale. A pity that the 'a-z' 'A-Z' semantic of lower to upper doesn't work any more :-( Regards, Chris Knight Index: files/patch-src::extern::editline::makelist =================================================================== RCS file: files/patch-src::extern::editline::makelist diff -N files/patch-src::extern::editline::makelist --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src::extern::editline::makelist 23 Jul 2004 07:13:00 -0000 @@ -0,0 +1,11 @@ +--- src/extern/editline/makelist.orig Mon May 24 04:24:25 2004 ++++ src/extern/editline/makelist Fri Jul 23 17:09:43 2004 +@@ -145,7 +145,7 @@ + # + -fh) + cat $FILES | $AWK '/el_action_t/ { print $3 }' | \ +- sort | tr '[a-z]' '[A-Z]' | $AWK ' ++ sort | tr '[:lower:]' '[:upper:]' | $AWK ' + BEGIN { + printf("/* Automatically generated file, do not edit */\n"); + printf("#ifndef _h_fcns_c\n#define _h_fcns_c\n");
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200407230730.i6N7UWvE061786>