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 /hints | |
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 'hints')
-rw-r--r-- | hints/freebsd.sh | 2 | ||||
-rw-r--r-- | hints/irix_6.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hints/freebsd.sh b/hints/freebsd.sh index 6a105fd170..7ce17351c7 100644 --- a/hints/freebsd.sh +++ b/hints/freebsd.sh @@ -173,7 +173,7 @@ esac cat > UU/usethreads.cbu <<'EOCBU' case "$usethreads" in $define|true|[yY]*) - lc_r=`/sbin/ldconfig -r|grep ':-lc_r'|awk '{print $NF}'|tail -1` + lc_r=`/sbin/ldconfig -r|grep ':-lc_r'|awk '{print $NF}'|sed -n '$p'` case "$osvers" in 0*|1*|2.0*|2.1*) cat <<EOM >&4 I did not know that FreeBSD $osvers supports POSIX threads. diff --git a/hints/irix_6.sh b/hints/irix_6.sh index 61eac6e214..c192a5d40e 100644 --- a/hints/irix_6.sh +++ b/hints/irix_6.sh @@ -95,7 +95,7 @@ case "$cc" in # objects in the library are of the same ABI we are compiling # against. Albert Chin-A-Young <china@thewrittenword.com> libscheck='case "$xxx" in -*.a) /bin/ar p $xxx `/bin/ar t $xxx | /usr/bsd/head -1` >$$.o; +*.a) /bin/ar p $xxx `/bin/ar t $xxx | sed q` >$$.o; case "`/usr/bin/file $$.o`" in *N32*) rm -f $$.o ;; *) rm -f $$.o; xxx=/no/n32$xxx ;; |