summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2009-01-20 12:04:46 -0800
committerIan Romanick <ian.d.romanick@intel.com>2009-01-20 12:04:46 -0800
commit37eac61e71a313df9927ca2a41ef49bda92fd9c6 (patch)
tree1097f464a0891f7e911c5a6944228ab0ed0932b3
parent63814639cb070e34a1aa2205ff71d64e6cc884ce (diff)
Make autogen.sh look like the autogen.sh in every other fd.o project
Explicitly calling aclocal in autogen.sh circumvents the user's ACLOCAL environment setting and pretty much always does the wrong thing.
-rwxr-xr-xautogen.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh
index 24c845f..1b15e18 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -6,9 +6,7 @@ test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd $srcdir
-aclocal || exit 1
-automake --foreign --add-missing || exit 1
-autoconf || exit 1
+autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?