diff options
author | Bodo Möller <bodo@openssl.org> | 1999-05-16 12:55:40 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-05-16 12:55:40 +0200 |
commit | 84d148778eab217cc5eab1c02012a7e0e58553ea (patch) | |
tree | 9acdfd4041f7a24d6e8a711db7f4df1587556c13 /Configure | |
parent | Fix some obvious bugs in the PKCS#7 library handling. It didn't try to (diff) | |
download | openssl-84d148778eab217cc5eab1c02012a7e0e58553ea.tar.xz openssl-84d148778eab217cc5eab1c02012a7e0e58553ea.zip |
Don't run "make depend" automatically.
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -642,7 +642,9 @@ if($IsWindows) { system "perl crypto/objects/obj_dat.pl <crypto/objects/objects.h >crypto/objects/obj_dat.h"; } else { (system "make -f Makefile.ssl PERL=\'$perl\' links") == 0 or exit $?; - (system 'make depend') == 0 or exit $? if $depflags ne ""; + ### (system 'make depend') == 0 or exit $? if $depflags ne ""; + # Run "make depend" manually if you want to be able to delete + # the source code files of ciphers you left out. &dofile("tools/c_rehash",$openssldir,'^DIR=', 'DIR=%s',); } |