summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChip Salzenberg <chip@pobox.com>1999-04-13 04:31:50 +0000
committerTodd Rinaldo <toddr@cpanel.net>2019-10-19 07:03:08 -0500
commitabb313f99765cffd9c9c5c94e1b1ec528c0771d6 (patch)
tree900be08592e29d88e05ba47f7c8c39c2cdba43a3
parentf22e752ed9ec734a151cca2889a792f9743b92d1 (diff)
downloadperl-abb313f99765cffd9c9c5c94e1b1ec528c0771d6.tar.gz
Eliminate false Configure warning about LD_LIBRARY_PATH.
(It's now set automatically during the build process.) p4raw-id: //depot/maint-5.004/perl@3251
-rwxr-xr-xConfigure22
1 files changed, 1 insertions, 21 deletions
diff --git a/Configure b/Configure
index 63c33e9d21..6e4b15a6e9 100755
--- a/Configure
+++ b/Configure
@@ -4674,27 +4674,7 @@ EOM
. ./myread
case "$ans" in
true|$define|[Yy]*)
- useshrplib='true'
- # Why does next4 have to be so different?
- case "${osname}${osvers}" in
- next4*) xxx='DYLD_LIBRARY_PATH' ;;
- os2*) xxx='' ;; # Nothing special needed.
- *) xxx='LD_LIBRARY_PATH' ;;
- esac
- if test X"$xxx" != "X"; then
- $cat <<EOM | $tee -a ../config.msg >&4
-
-To build perl, you must add the current working directory to your
-$xxx environment variable before running make. You can do
-this with
- $xxx=\`pwd\`:\$$xxx; export $xxx
-for Bourne-style shells, or
- setenv $xxx \`pwd\`
-for Csh-style shells. You *MUST* do this before running make.
-
-EOM
- fi
- ;;
+ useshrplib='true' ;;
*) useshrplib='false' ;;
esac
;;