[PATCH] Reducing the numbers of symbols in errlist-compat.awk
Aurelien Jarno
aurelien@aurel32.net
Sun Jan 22 21:59:00 GMT 2006
Hi all,
Currently the number of error symbols is defined to 100 in
sysdeps/gnu/errlist-compat.awk. This value is a bit high in case of
GNU/kFreeBSD. In order not to have to duplicate the script in our
sysdeps/ directory, I suggests reducing this number to 80.
Patch attached.
Thanks,
Aurelien
2006-01-22 Aurelien Jarno <aurelien@aurel32.net>
* sysdeps/gnu/errlist-compat.awk: Reduce the number of symbols to 80.
--
.''`. Aurelien Jarno | GPG: 1024D/F1BCDB73
: :' : Debian developer | Electrical Engineer
`. `' aurel32@debian.org | aurelien@aurel32.net
`- people.debian.org/~aurel32 | www.aurel32.net
-------------- next part --------------
Index: sysdeps/gnu/errlist-compat.awk
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/gnu/errlist-compat.awk,v
retrieving revision 1.8
diff -u -d -p -r1.8 errlist-compat.awk
--- sysdeps/gnu/errlist-compat.awk 8 Mar 2005 20:44:46 -0000 1.8
+++ sysdeps/gnu/errlist-compat.awk 22 Jan 2006 21:43:14 -0000
@@ -35,7 +35,7 @@ $1 == "#errlist-compat" {
# Don't process any further Versions files
ARGC = ARGIND + 1;
cnt = $2 + 0;
- if (cnt < 100) {
+ if (cnt < 80) {
print "*** this line seems bogus:", $0 > "/dev/stderr";
exit 1;
}
More information about the Libc-alpha
mailing list