From: Lutz Jänicke Date: Wed, 5 Jun 2002 07:28:07 +0000 (+0000) Subject: On some systems the default "perl" may still be perl4, use the correct X-Git-Tag: OpenSSL_0_9_6e~26^2~101 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0990a0851a3bf777a0bf2fa609f072c6af8a7c0c;p=oweals%2Fopenssl.git On some systems the default "perl" may still be perl4, use the correct version determined by "config" instead. --- 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