1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

* scripts/versions.awk: Don't pass -n flag to sort command.

This commit is contained in:
Roland McGrath
2002-12-02 06:31:28 +00:00
parent 6d3423184e
commit 720efe005b
2 changed files with 6 additions and 1 deletions

View File

@ -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.