diff options
author | Craig A. Berry <craigberry@mac.com> | 2010-04-23 17:54:05 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2010-04-23 17:54:05 -0500 |
commit | 839d17582bad556c85fba50bb136d1c1fa878a54 (patch) | |
tree | b81be60339e5adcd7e1c765cb15a962319624595 /configure.com | |
parent | 6ba8cc3796ec7d9118fe777db057a603fcc4595d (diff) | |
download | perl-839d17582bad556c85fba50bb136d1c1fa878a54.tar.gz |
Fix -Uuseperlio command-line option in configure.com.
Formerly it only worked if you went through all the questions
interactively and explicitly answered no.
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.com b/configure.com index 0fce752b83..721b889e67 100644 --- a/configure.com +++ b/configure.com @@ -3053,7 +3053,7 @@ $! $ bool_dflt = "y" $ IF F$TYPE(useperlio) .NES. "" $ then -$ if f$extract(0,1,f$edit(useperlio,"collapse,upcase")) .eqs. "N" .or. useperlio .eqs. "undef" then bool_dflt = "n" +$ if .not. useperlio .or. useperlio .eqs. "undef" then bool_dflt = "n" $ endif $ IF .NOT. silent $ THEN |