diff --git a/autogen.sh b/autogen.sh index 854a961a5..c5040958c 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,11 +1,5 @@ #!/bin/sh -rm -rf autom4te.cache -rm -f aclocal.m4 ltmain.sh - -touch README -touch ABOUT-NLS - echo "Running autopoint..." ; autopoint -f || : echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1 echo "Running autoconf..." ; autoconf || exit 1 @@ -14,5 +8,5 @@ echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --au echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1 if [ -z "$NOCONFIGURE" ]; then - ./configure "$@" + ./configure -C "$@" fi