Commit 0990a085 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.
parent bb0db9c4
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