summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-06-21 11:32:25 +0000
committerBodo Möller <bodo@openssl.org>1999-06-21 11:32:25 +0000
commitf76a8084df2a204e193f546c8defdfce3491bfde (patch)
tree5219318b1466ad97b8068a168839de0d63af8bfc /util
parent10cea23bd46cb43fab1de5c59828ae67f80975c3 (diff)
Perl variable names are case-sensitive ...
Diffstat (limited to 'util')
-rwxr-xr-xutil/mk1mf.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index e1e9985063..c9b5b2c502 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -12,7 +12,7 @@ $ssl_version="";
open(IN,"<Makefile.ssl") || die "unable to open Makefile.ssl!\n";
while(<IN>) {
$ssl_version=$1 if (/^VERSION=(.*)$/);
- $options=$1 if (/^OPTIONS=(.*)$/);
+ $OPTIONS=$1 if (/^OPTIONS=(.*)$/);
$INSTALLTOP=$1 if (/^INSTALLTOP=(.*$)/);
}
close(IN);