e_input: move logic to enable keyboard
[platform/upstream/enlightenment.git] / autogen.sh
index c1c6930..69a0b2f 100755 (executable)
@@ -1,29 +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
+    autoreconf --symlink --install || exit 1
+  )
+)
 
-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
-echo "Generating gettext enlightenment.pot template"; \
-xgettext \
--n \
--C \
--d enlightenment \
--p po \
---copyright-holder="Enlightenment development team" \
---foreign-user \
---msgid-bugs-address="enlightenment-devel@lists.sourceforge.net" \
--k -k_ -kd_ \
---from-code=UTF-8 \
--o enlightenment.pot \
-`find . -name "*.[ch]" -print` || exit 1
+test -n "$NOCONFIGURE" || exec $srcdir/configure -C "$@"
 
-if [ -z "$NOCONFIGURE" ]; then
-       ./configure "$@"
-fi
+exit 0