summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorRobin Barker <RMBarker@cpan.org>2001-01-02 15:24:07 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-01-05 18:15:11 +0000
commit8504afb7cc07119c2ef6ff860615c2648628c732 (patch)
tree8247b5a0f343de61e61846e1cc03cb45228be91b /Configure
parent00122d59e767e3ed1489a9b476892f47cc98e861 (diff)
downloadperl-8504afb7cc07119c2ef6ff860615c2648628c732.tar.gz
failure to set src='.'
Message-Id: <200101021524.PAA15145@tempest.npl.co.uk> If you call configure as C<./Configure> or C<sh ./Configure>, $src is set to the absolute path name, not '.'. This, in turn, means -Dmksymlink tries to do its stuff because it does not think it is in the src directory. (plus a metaconfig nitfix) p4raw-id: //depot/perl@8337
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/Configure b/Configure
index a7206f8ce0..023df3644c 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 Jan 5 00:20:59 EET 2001 [metaconfig 3.0 PL70]
+# Generated on Fri Jan 5 20:11:52 EET 2001 [metaconfig 3.0 PL70]
# (with additional metaconfig patches by perlbug@perl.org)
cat >c1$$ <<EOF
@@ -1434,6 +1434,7 @@ case "$src" in
*/*) src=`echo $0 | sed -e 's%/[^/][^/]*$%%'`
case "$src" in
/*) ;;
+ .) ;;
*) src=`cd ../$src && pwd` ;;
esac
;;