summaryrefslogtreecommitdiffstats
path: root/libjava
diff options
context:
space:
mode:
authormrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>2006-07-07 21:20:12 +0000
committermrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>2006-07-07 21:20:12 +0000
commit1c8f43ad85f3a010768cd0f990c28e565d6f7a86 (patch)
tree2600e20df607b3ea2c833813f4d80fc9fa1e6d7e /libjava
parent49cde0f183d98789be0465af2fb89ee77fec563f (diff)
downloadppe42-gcc-1c8f43ad85f3a010768cd0f990c28e565d6f7a86.tar.gz
ppe42-gcc-1c8f43ad85f3a010768cd0f990c28e565d6f7a86.zip
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. * libjava/classpath/ltmain.sh: Don't assume "sort +2" is equivalent to "sort -k 3", since POSIX 1003.1-2001 no longer requires this. This uses the same fix that is already in libjava/libltdl/ltmain.sh. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@115271 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava')
-rw-r--r--libjava/classpath/ChangeLog12
-rw-r--r--libjava/classpath/ltmain.sh8
2 files changed, 19 insertions, 1 deletions
diff --git a/libjava/classpath/ChangeLog b/libjava/classpath/ChangeLog
index 82e756bd730..4e401a4a3cc 100644
--- a/libjava/classpath/ChangeLog
+++ b/libjava/classpath/ChangeLog
@@ -1,3 +1,15 @@
+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.
+ * libjava/classpath/ltmain.sh: Don't assume "sort +2" is
+ equivalent to "sort -k 3", since POSIX 1003.1-2001 no longer
+ requires this.
+ This uses the same fix that is already in
+ libjava/libltdl/ltmain.sh.
+
2006-07-04 Peter O'Gorman <peter@pogma.com>
* ltconfig: chmod 644 before ranlib during install.
diff --git a/libjava/classpath/ltmain.sh b/libjava/classpath/ltmain.sh
index 219823fc45d..a3c55f9a751 100644
--- a/libjava/classpath/ltmain.sh
+++ b/libjava/classpath/ltmain.sh
@@ -3839,7 +3839,13 @@ extern \"C\" {
fi
# Try sorting and uniquifying the output.
- if grep -v "^: " < "$nlist" | sort +2 | uniq > "$nlist"S; then
+ if grep -v "^: " < "$nlist" |
+ if sort -k 3 </dev/null >/dev/null 2>&1; then
+ sort -k 3
+ else
+ sort +2
+ fi |
+ uniq > "$nlist"S; then
:
else
grep -v "^: " < "$nlist" > "$nlist"S
OpenPOWER on IntegriCloud