From: Bodo Möller Date: Sun, 16 May 1999 10:55:40 +0000 (+0000) Subject: Don't run "make depend" automatically. X-Git-Tag: OpenSSL_0_9_3beta1~50 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=84d148778eab217cc5eab1c02012a7e0e58553ea;p=oweals%2Fopenssl.git Don't run "make depend" automatically. --- diff --git a/Configure b/Configure index 948da07b9f..b6dd6ff747 100755 --- a/Configure +++ b/Configure @@ -642,7 +642,9 @@ if($IsWindows) { system "perl crypto/objects/obj_dat.pl 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',); }