Move the "NO WARRENTY" notice above the conditional exit, so if configure fails

users will still see the notice.

Originally committed to SVN as r2105.
This commit is contained in:
Amar Takhar 2008-03-22 10:39:32 +00:00
parent 67fc793c90
commit 02939b2aee
1 changed files with 7 additions and 6 deletions

View File

@ -310,11 +310,6 @@ cd $ORIGDIR
echo "--- $srcdir/configure ---"
$srcdir/configure --enable-maintainer-mode $AUTOGEN_CONFIGURE_ARGS "$@"
RC=$?
if test $RC -ne 0; then
echo
echo "Configure failed or did not finish!"
exit $RC
fi
echo
echo
@ -325,5 +320,11 @@ echo "* download an official distfile in order to receive support."
echo "*"
echo "***********************************************************************"
echo
echo "Now type 'make' to compile the $PROJECT."
if test $RC -ne 0; then
echo
echo "Configure failed or did not finish!"
exit $RC
fi
echo "Now type 'make' to compile the $PROJECT."