summaryrefslogtreecommitdiffstats
path: root/engines/makeengines.com
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-11-14 15:38:47 +0000
committerRichard Levitte <levitte@openssl.org>2002-11-14 15:38:47 +0000
commitcb21d001c92ec52b88d19e34830b5c2342a154bf (patch)
tree4a65bede2c1fb189f4e9151a1999712714f12d6b /engines/makeengines.com
parentc7faede37b9642e95b2a8ad7f1a69445cf09fd28 (diff)
DCL logic bugs fixed.
(I really need to review my knowledge of the language)
Diffstat (limited to 'engines/makeengines.com')
-rw-r--r--engines/makeengines.com8
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/makeengines.com b/engines/makeengines.com
index 96fccbddf9..b2d191653d 100644
--- a/engines/makeengines.com
+++ b/engines/makeengines.com
@@ -369,7 +369,7 @@ $!
$! Else, Check To See If OPT_PHASE Has A Valid Arguement.
$!
$ IF ("," + ACCEPT_PHASE + ",") - ("," + OPT_PHASE + ",") -
- .EQS. ("," + ACCEPT_PHASE + ",")
+ .NES. ("," + ACCEPT_PHASE + ",")
$ THEN
$!
$! A Valid Arguement.
@@ -385,9 +385,11 @@ $!
$ WRITE SYS$OUTPUT ""
$ WRITE SYS$OUTPUT "The option ",OPT_PHASE," is invalid. The valid options are:"
$ WRITE SYS$OUTPUT ""
-$ IF ("," + ACCEPT_PHASE + ",") - ",ALL," THEN -
+$ IF ("," + ACCEPT_PHASE + ",") - ",ALL," -
+ .NES. ("," + ACCEPT_PHASE + ",") THEN -
WRITE SYS$OUTPUT " ALL : just build everything."
-$ IF ("," + ACCEPT_PHASE + ",") - ",ENGINES," THEN -
+$ IF ("," + ACCEPT_PHASE + ",") - ",ENGINES," -
+ .NES. ("," + ACCEPT_PHASE + ",") THEN -
WRITE SYS$OUTPUT " ENGINES : to compile just the [.xxx.EXE.ENGINES]*.EXE hareable images."
$ WRITE SYS$OUTPUT ""
$ WRITE SYS$OUTPUT " where 'xxx' stands for:"