From: Lutz Jänicke Date: Wed, 5 Jun 2002 07:27:21 +0000 (+0000) Subject: On some systems the default "perl" may still be perl4, use the correct X-Git-Tag: OpenSSL_0_9_7-beta2~36 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4b3743c85aceb133f88241a24457f517b26af37c;p=oweals%2Fopenssl.git On some systems the default "perl" may still be perl4, use the correct version determined by "config" instead. Submitted by: Reviewed by: PR: --- diff --git a/util/domd b/util/domd index aa99cb0523..8cbe383c16 100755 --- a/util/domd +++ b/util/domd @@ -18,11 +18,11 @@ if [ "$MAKEDEPEND" = "gcc" ]; then sed -e '/^# DO NOT DELETE.*/,$d' < Makefile.ssl > Makefile.tmp echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp gcc -D OPENSSL_DOING_MAKEDEPEND -M $@ >> Makefile.tmp - perl $TOP/util/clean-depend.pl < Makefile.tmp > Makefile.new + ${PERL} $TOP/util/clean-depend.pl < Makefile.tmp > Makefile.new rm -f Makefile.tmp else ${MAKEDEPEND} -D OPENSSL_DOING_MAKEDEPEND -f Makefile.ssl $@ - perl $TOP/util/clean-depend.pl < Makefile.ssl > Makefile.new + ${PERL} $TOP/util/clean-depend.pl < Makefile.ssl > Makefile.new fi mv Makefile.new Makefile.ssl # unfake the presence of Kerberos