diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-15 13:12:40 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-15 13:12:40 +0000 |
commit | a02608dec28d4e964c218e69ee3e39c623232d8d (patch) | |
tree | 611366d44ab27efc6ee809b9715a1b71cd83e123 /makedepend.SH | |
parent | b73b7152f5f6c25feb0459a1be8f3b086ea765db (diff) | |
download | perl-a02608dec28d4e964c218e69ee3e39c623232d8d.tar.gz |
The problem described in 20010514.031 still wasn't
fully cured, there were remnants of $CONFIG when
$CONFIGDOTSH was expected. Now renamed to PERL_CONFIG_SH
to avoid future conflicts.
p4raw-id: //depot/perl@10113
Diffstat (limited to 'makedepend.SH')
-rwxr-xr-x | makedepend.SH | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/makedepend.SH b/makedepend.SH index 579be0b748..ec21795429 100755 --- a/makedepend.SH +++ b/makedepend.SH @@ -1,5 +1,5 @@ #! /bin/sh -case $CONFIGDOTSH in +case $PERL_CONFIG_SH in '') if test -f config.sh; then TOP=.; elif test -f ../config.sh; then TOP=..; @@ -41,7 +41,7 @@ esac export PATH || (echo "OOPS, this isn't sh. Desperation time. I will feed myself to sh."; sh \$0; kill \$\$) -case $CONFIGDOTSH in +case $PERL_CONFIG_SH in '') if test -f config.sh; then TOP=.; elif test -f ../config.sh; then TOP=..; |