diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-22 01:14:43 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-22 01:14:43 +0000 |
commit | 7483f793f873c80359ed468026803ea33269a0d2 (patch) | |
tree | fc6248938d58f89fe577a115ad331c853290239a /Configure | |
parent | dc22e1c47de3940a478e7bfe0cdc4ec8d3e322ab (diff) | |
download | perl-7483f793f873c80359ed468026803ea33269a0d2.tar.gz |
Tell that you are removing the unneeded -lsfio.
p4raw-id: //depot/perl@10807
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 15 |
1 files changed, 10 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 Fri Jun 22 01:49:37 EET DST 2001 [metaconfig 3.0 PL70] +# Generated on Fri Jun 22 05:07:22 EET DST 2001 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -12099,10 +12099,15 @@ esac case "$d_sfio" in $define) ;; *) : Remove sfio from list of libraries to use - set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'` - shift - libs="$*" - echo "libs = $libs" >&4 + case "$libs" in + *-lsfio*) + echo "Removing unneeded -lsfio from library list" >&4 + set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'` + shift + libs="$*" + echo "libs = $libs" >&4 + ;; + esac ;; esac |