diff options
author | Paul Eggert <eggert@twinsun.com> | 2002-02-19 19:03:51 -0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-20 14:38:14 +0000 |
commit | eade9b7139927966a87970564990ef3670609a0a (patch) | |
tree | b67233eb81a35ac38000eb187def3ff3443e16ac /Configure | |
parent | f314eb9f06d076c4d5e6e589600ca3076772b69f (diff) | |
download | perl-eade9b7139927966a87970564990ef3670609a0a.tar.gz |
[ID 20020220.002] Perl 5.7.2 porting patches for POSIX 1003.1-2001 hosts
Message-Id: <200202201103.g1KB3p427665@sic.twinsun.com>
p4raw-id: //depot/perl@14784
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Wed Feb 20 17:20:07 EET 2002 [metaconfig 3.0 PL70] +# Generated on Wed Feb 20 17:35:55 EET 2002 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -1706,7 +1706,7 @@ rm -f .echotmp echo " " if test -f "$rsrc/MANIFEST"; then echo "First let's make sure your kit is complete. Checking..." >&4 - awk '$1 !~ /PACK[A-Z]+/ {print $1}' "$rsrc/MANIFEST" | split -50 + awk '$1 !~ /PACK[A-Z]+/ {print $1}' "$rsrc/MANIFEST" | split rm -f missing tmppwd=`pwd` for filelist in x??; do @@ -4282,7 +4282,7 @@ for thislib in $libswanted; do for thisdir in $libspath; do xxx='' if $test ! -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then - xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|tail -1` + xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|sed -n '$p'` $test -f "$xxx" && eval $libscheck $test -f "$xxx" && libstyle=shared fi @@ -15692,7 +15692,7 @@ $cat >>signal_cmd <<'EOS' set signal if eval $compile_ok; then - $run ./signal$_exe | $sort -n +1 | $uniq | $awk -f signal.awk >signal.lst + $run ./signal$_exe | $sort -n -k 2 | $uniq | $awk -f signal.awk >signal.lst else echo "(I can't seem be able to compile the whole test program)" >&4 echo "(I'll try it in little pieces.)" >&4 @@ -15726,7 +15726,7 @@ EOCP done if $test -s signal.ls1; then $cat signal.nsg signal.ls1 | - $sort -n +1 | $uniq | $awk -f signal.awk >signal.lst + $sort -n -k 2 | $uniq | $awk -f signal.awk >signal.lst fi fi |