diff options
author | dm <dm@cvs.openbsd.org> | 1996-09-06 01:33:54 +0000 |
---|---|---|
committer | dm <dm@cvs.openbsd.org> | 1996-09-06 01:33:54 +0000 |
commit | f85c556d4c3e61eb22703dd355af7d25b5d7859e (patch) | |
tree | 3db3008f1473b8d1c6433eae2d98e7471fd7afc0 /gnu/usr.bin/perl | |
parent | 183eeafb4ab0d43da59e5331c2ee06c682850b72 (diff) |
Make it believe us when we say afs is not running.
Diffstat (limited to 'gnu/usr.bin/perl')
-rw-r--r-- | gnu/usr.bin/perl/Configure | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/gnu/usr.bin/perl/Configure b/gnu/usr.bin/perl/Configure index 34c39ce30c6..2081e76240d 100644 --- a/gnu/usr.bin/perl/Configure +++ b/gnu/usr.bin/perl/Configure @@ -18,7 +18,7 @@ # archive site. Check with Archie if you don't know where that can be.) # -# $Id: Head.U,v 3.0.1.8 1995/07/25 13:40:02 ram Exp $ +# $Id: Configure,v 1.1.1.1 1996/08/19 10:11:33 downsj Exp $ # # Generated on Wed Feb 21 14:26:18 EST 1996 [metaconfig 3.0 PL60] @@ -1934,14 +1934,16 @@ rp='What is your architecture name' archname="$ans" myarchname="$tarch" -: is AFS running? -echo " " -if test -d /afs; then - echo "AFS may be running... I'll be extra cautious then..." >&4 - afs=true -else - echo "AFS does not seem to be running..." >&4 +if [ -z "$afs" ]; then + : is AFS running? + echo " " + if test -d /afs; then + echo "AFS may be running... I'll be extra cautious then..." >&4 + afs=true + else + echo "AFS does not seem to be running..." >&4 afs=false + fi fi : decide how portable to be. Allow command line overrides. |