diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-07-06 23:24:51 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2006-07-06 23:24:51 +0000 |
commit | 27b56ba6cc4d22c0407c0372ec8d6de20e9ac2a7 (patch) | |
tree | fb41ac292252903edcd6ef7a56a825224d78fa07 /contrib/ChangeLog | |
parent | 525dc87d06289ac03a09201758ab9f43bdd856bf (diff) | |
download | gcc-27b56ba6cc4d22c0407c0372ec8d6de20e9ac2a7.zip gcc-27b56ba6cc4d22c0407c0372ec8d6de20e9ac2a7.tar.gz gcc-27b56ba6cc4d22c0407c0372ec8d6de20e9ac2a7.tar.bz2 |
Port to hosts whose 'sort' and 'tail' implementations treat operands with leading '+' as file names...
Port to hosts whose 'sort' and 'tail' implementations
treat operands with leading '+' as file names, as POSIX
has required since 2001. However, make sure the code still
works on pre-POSIX hosts.
* ltmain.sh: Don't assume "sort +2" is equivalent to
"sort -k 3", since POSIX 1003.1-2001 no longer requires this.
contrib:
* compare_tests: Don't assume "sort +2" is equivalent to
"sort -k 3", since POSIX 1003.1-2001 no longer requires this.
gcc:
* Makefile.in (slowcompare): Port to POSIX 1003.1-2001,
which says you should use "tail -c +N" rather than "tail +Nc".
Fix a bug: the old code incorrectly skipped 15 bytes, not 16.
From-SVN: r115234
Diffstat (limited to 'contrib/ChangeLog')
-rw-r--r-- | contrib/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 120213a..35d29b9 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,12 @@ +2006-07-06 Paul Eggert <eggert@cs.ucla.edu> + + Port to hosts whose 'sort' and 'tail' implementations + treat operands with leading '+' as file names, as POSIX + has required since 2001. However, make sure the code still + works on pre-POSIX hosts. + * compare_tests: Don't assume "sort +2" is equivalent to + "sort -k 3", since POSIX 1003.1-2001 no longer requires this. + 2006-06-05 James Lemke <jwlemke@wasabisystems.com> * dg-cmp-results.sh: New script for comparing DejaGNU logs. |