From: Roland McGrath Date: Mon, 2 Dec 2002 06:31:28 +0000 (+0000) Subject: * scripts/versions.awk: Don't pass -n flag to sort command. X-Git-Tag: upstream/2.30~20638 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=720efe005bf1e5795e57b7b7acf828b4d9874b9f;p=external%2Fglibc.git * scripts/versions.awk: Don't pass -n flag to sort command. --- diff --git a/ChangeLog b/ChangeLog index bae9bd3..a70384b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2002-12-01 Roland McGrath + * scripts/versions.awk: Don't pass -n flag to sort command. + * posix/bug-regex13.c: Include . * sysdeps/generic/libc-start.c (__libc_start_main): Do diff --git a/scripts/versions.awk b/scripts/versions.awk index 785380a..7e33387 100644 --- a/scripts/versions.awk +++ b/scripts/versions.awk @@ -26,7 +26,10 @@ BEGIN { close(defsfile); tmpfile = buildroot "Versions.tmp"; - sort = "sort -n > " tmpfile; + # Note this sorting presumes only single digits between dots for proper + # numeric ordering. sort -n doesn't do quite the right thing either, + # and in some non-GNU sort implementations does not sort at all. + sort = "sort > " tmpfile; } # Remove comment lines.