Commit 4b3743c8 authored by Lutz Jänicke's avatar Lutz Jänicke
Browse files

On some systems the default "perl" may still be perl4, use the correct

version determined by "config" instead.
Submitted by:
Reviewed by:
PR:
parent 5795665a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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