summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-06-22 01:14:43 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-22 01:14:43 +0000
commit7483f793f873c80359ed468026803ea33269a0d2 (patch)
treefc6248938d58f89fe577a115ad331c853290239a /Configure
parentdc22e1c47de3940a478e7bfe0cdc4ec8d3e322ab (diff)
downloadperl-7483f793f873c80359ed468026803ea33269a0d2.tar.gz
Tell that you are removing the unneeded -lsfio.
p4raw-id: //depot/perl@10807
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure15
1 files changed, 10 insertions, 5 deletions
diff --git a/Configure b/Configure
index 7f0c024a73..e823dac7d3 100755
--- a/Configure
+++ b/Configure
@@ -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