Ignoring errors in makedepend can hide problems.
This commit is contained in:
parent
43048d13c8
commit
2b7b1cad10
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ if [ "$MAKEDEPEND" = "gcc" ]; then
|
|||
done
|
||||
sed -e '/^# DO NOT DELETE.*/,$d' < Makefile > Makefile.tmp
|
||||
echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp
|
||||
gcc -D OPENSSL_DOING_MAKEDEPEND -M $args >> Makefile.tmp
|
||||
gcc -Werror -D OPENSSL_DOING_MAKEDEPEND -M $args >> Makefile.tmp || exit
|
||||
${PERL} $TOP/util/clean-depend.pl < Makefile.tmp > Makefile.new
|
||||
rm -f Makefile.tmp
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue