diff options
author | Richard Levitte <levitte@openssl.org> | 2015-04-27 11:02:36 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2015-04-27 11:02:36 +0200 |
commit | 4c1408962aeb8100846c01536b2f69f5e781f7d8 (patch) | |
tree | c332fa885c94c633f3c95b8b6f0ba2c6c08ed1f1 /util | |
parent | Add readline (etc) support (diff) | |
download | openssl-4c1408962aeb8100846c01536b2f69f5e781f7d8.tar.xz openssl-4c1408962aeb8100846c01536b2f69f5e781f7d8.zip |
Small fixes after the Big apps cleanup
This fixes util/mk1mf.pl, which was looking for old variable names from
apps/Makefile.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'util')
-rwxr-xr-x | util/mk1mf.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl index e0a44ccfdf..454dcd2790 100755 --- a/util/mk1mf.pl +++ b/util/mk1mf.pl @@ -399,7 +399,7 @@ for (;;) if ($key =~ /^[A-Z0-9_]*TEST$/ && (!$fipscanisteronly || $dir =~ /^fips/ )) { $test.=&var_add($dir,$val, 0); } - if (($key eq "PROGS") || ($key eq "E_OBJ")) + if ($key eq "EXE_OBJ") { $e_exe.=&var_add($dir,$val, 0); } if ($key eq "LIB") |