summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2003-03-13 04:03:59 +0000
committerPeter Johnson <peter@tortall.net>2003-03-13 04:03:59 +0000
commitc0c5940cb18086c7b7d8929600106df99ba6b6bd (patch)
treeeb9a7b2e959ee11e46c0476a4ccacde61c8ce381 /autogen.sh
parent107007d9bdd17d1a6d82c71064e8e44ffe66b374 (diff)
downloadyasm-c0c5940cb18086c7b7d8929600106df99ba6b6bd.tar.gz
Replace --enable-dev functionality with --enable-maintainer-mode usage, other
fixes and whitespace cleanup. Renamed ANSI_CFLAGS to MORE_CFLAGS. Enable "morewarn" along with --enable-maintainer-mode if GCC is present by default. svn path=/trunk/yasm/; revision=846
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh
index 47cf79ca..9b7ebc1d 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -63,9 +63,9 @@ if test "$DIE" -eq 1; then
fi
if test -z "$*"; then
- echo "I am going to run ./configure with --enable-dev - if you wish "
- echo "to pass any other args to it, please specify them on the $0"
- echo "command line."
+ echo "I am going to run ./configure with --enable-maintainer-mode"
+ echo "If you wish to pass any other args to it, please specify them"
+ echo "on the $0 command line."
fi
echo "Generating configuration files for $package, please wait...."
@@ -85,6 +85,6 @@ echo " automake -a"
automake -a # || exit 1
echo " autoconf"
autoconf || exit 1
-echo " configure --enable-dev $@"
-$srcdir/configure --enable-dev "$@" || exit 1
+echo " configure --enable-maintainer-mode $@"
+$srcdir/configure --enable-maintainer-mode "$@" || exit 1