From cb02c738602ea6d71fb19da83151174c771ca4d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BChler?= Date: Sun, 10 Nov 2013 13:41:09 +0000 Subject: [autobuild] use autoreconf instead of calling tools manually; add generated files to .gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Stefan Bühler git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2914 152afb58-edef-0310-8abb-c4023f1b3aa9 --- autogen.sh | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) (limited to 'autogen.sh') 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." -- cgit v1.2.1