summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh24
1 files changed, 1 insertions, 23 deletions
diff --git a/autogen.sh b/autogen.sh
index 89008a9b..3983feb5 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,29 +1,7 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
-if which glibtoolize >/dev/null 2>&1; then
- LIBTOOLIZE=${LIBTOOLIZE:-glibtoolize}
-else
- LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
-fi
-ACLOCAL=${ACLOCAL:-aclocal}
-AUTOHEADER=${AUTOHEADER:-autoheader}
-AUTOMAKE=${AUTOMAKE:-automake}
-AUTOCONF=${AUTOCONF:-autoconf}
-
-ARGV0=$0
-
set -e
-
-run() {
- echo "$ARGV0: running \`$@'"
- "$@"
-}
-
-run $LIBTOOLIZE --copy --force
-run $ACLOCAL $ACLOCAL_FLAGS
-run $AUTOHEADER
-run $AUTOMAKE --add-missing --copy --foreign --force-missing
-run $AUTOCONF
+autoreconf --force --install
echo "Now type './configure ...' and 'make' to compile."