aboutsummaryrefslogtreecommitdiffstats
path: root/util/domd
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-06-30 14:59:59 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-06-30 14:59:59 +0000
commit859d5eb2d723ef06ac9344447744b0f3baf44c05 (patch)
tree57720b23e655abda94760d8f170d16235a5e40b3 /util/domd
parent29b0c4a01cd2036e04b55b4a3fc6af8d4f00d772 (diff)
downloadopenssl-859d5eb2d723ef06ac9344447744b0f3baf44c05.tar.gz
PR: 1963
Submitted by: David McCullough <david_mccullough@securecomputing.com> Approved by: steve@openssl.org Make build fail if makedepend not present.
Diffstat (limited to 'util/domd')
-rwxr-xr-xutil/domd8
1 files changed, 6 insertions, 2 deletions
diff --git a/util/domd b/util/domd
index 27c0211a5a..bab48cb7a2 100755
--- a/util/domd
+++ b/util/domd
@@ -22,13 +22,17 @@ if expr "$MAKEDEPEND" : '.*gcc$' > /dev/null; then
done
sed -e '/^# DO NOT DELETE.*/,$d' < Makefile > Makefile.tmp
echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp
- ${MAKEDEPEND} -Werror -D OPENSSL_DOING_MAKEDEPEND -M $args >> Makefile.tmp || exit
+ ${MAKEDEPEND} -Werror -D OPENSSL_DOING_MAKEDEPEND -M $args >> Makefile.tmp || exit 1
${PERL} $TOP/util/clean-depend.pl < Makefile.tmp > Makefile.new
+ RC=$?
rm -f Makefile.tmp
else
- ${MAKEDEPEND} -D OPENSSL_DOING_MAKEDEPEND $@
+ ${MAKEDEPEND} -D OPENSSL_DOING_MAKEDEPEND $@ && \
${PERL} $TOP/util/clean-depend.pl < Makefile > Makefile.new
+ RC=$?
fi
mv Makefile.new Makefile
# unfake the presence of Kerberos
rm $TOP/krb5.h
+
+exit $RC