LMS has got a new release.
[platform/upstream/lightmediascanner.git] / autogen.sh
index 5bbd4d9..5aebe3e 100755 (executable)
@@ -1,14 +1,14 @@
 #!/bin/sh
 
-rm -rf autom4te.cache
-rm -f aclocal.m4 ltmain.sh
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
 
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
-echo "Running autoheader..." ; autoheader || exit 1
-echo "Running autoconf..." ; autoconf || exit 1
-echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
-echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
+origdir=`pwd`
+
+cd "$srcdir"
+autoreconf --force --install -I m4/
+cd "$origdir"
 
 if [ -z "$NOCONFIGURE" ]; then
-       ./configure "$@"
+    $srcdir/configure $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?
 fi