be verbose about AUTOGEN_CONFIGURE_ARGS in the message that is printed if

2004-03-23  Michael Natterer  <mitch@gimp.org>

	* autogen.sh: be verbose about AUTOGEN_CONFIGURE_ARGS in the
	message that is printed if no arguments were passed.
This commit is contained in:
Michael Natterer 2004-03-23 19:24:19 +00:00 committed by Michael Natterer
parent cef98b503d
commit f107e6cea9
2 changed files with 21 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2004-03-23 Michael Natterer <mitch@gimp.org>
* autogen.sh: be verbose about AUTOGEN_CONFIGURE_ARGS in the
message that is printed if no arguments were passed.
2004-03-23 Sven Neumann <sven@gimp.org>
Michael Natterer <mitch@gimp.org>

View File

@ -178,10 +178,22 @@ test $TEST_TYPE $FILE || {
if test -z "$*"; then
echo
echo "I am going to run ./configure with no arguments - if you wish "
echo "to pass any to it, please specify them on the $0 command line."
echo
if test -z "$AUTOGEN_CONFIGURE_ARGS"; then
echo
echo "I am going to run ./configure with no arguments - if you wish "
echo "to pass any to it, please specify them on the $0 command line "
echo "or set the AUTOGEN_CONFIGURE_ARGS environment variable."
echo
else
echo
echo "I am going to run ./configure with the following arguments:"
echo
echo " $AUTOGEN_CONFIGURE_ARGS"
echo
echo "If you wish to pass additional arguments, please specify them "
echo "on the $0 command line."
echo
fi
fi
if test -z "$ACLOCAL_FLAGS"; then