kwo pushed a commit to branch master.

http://git.enlightenment.org/e16/e16-docs.git/commit/?id=355b3a6672b7876a01a1dd87ce356a2145c39f9f

commit 355b3a6672b7876a01a1dd87ce356a2145c39f9f
Author: Kim Woelders <[email protected]>
Date:   Sun Aug 12 15:38:43 2018 +0200

    Simplify autogen.sh
---
 autogen.sh | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index d754cae..0d43361 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,11 +1,10 @@
 #!/bin/sh
 # Run this to generate all the initial makefiles, etc.
 
-echo "  aclocal $ACLOCAL_FLAGS"
-aclocal $ACLOCAL_FLAGS
-echo "  automake --add-missing"
-automake --add-missing 
-echo "  autoconf"
-autoconf
+rm -rf autom4te.cache aclocal.m4
 
-./configure "$@"
+autoreconf -vif
+
+if [ -z "$NOCONFIGURE" ]; then
+       ./configure "$@"
+fi

-- 


Reply via email to