e_input: move logic to enable keyboard
[platform/upstream/enlightenment.git] / autogen.sh
index d72de4b..69a0b2f 100755 (executable)
@@ -1,18 +1,17 @@
 #!/bin/sh
 
-rm -rf autom4te.cache
-rm -f aclocal.m4 ltmain.sh
+test -n "$srcdir" || srcdir=`dirname "$0"`
+test -n "$srcdir" || srcdir=.
+(
+  cd "$srcdir" &&
+  (
+    rm -rf autom4te.cache
+    rm -f aclocal.m4 ltmain.sh config.cache
 
-touch README
-touch ABOUT-NLS
+    autoreconf --symlink --install || exit 1
+  )
+)
 
-echo "Running autopoint..." ; autopoint -f || :
-echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
-echo "Running autoconf..." ; autoconf || exit 1
-echo "Running autoheader..." ; autoheader || exit 1
-echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
-echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
+test -n "$NOCONFIGURE" || exec $srcdir/configure -C "$@"
 
-if [ -z "$NOCONFIGURE" ]; then
-       ./configure "$@"
-fi
+exit 0