kwo pushed a commit to branch master. http://git.enlightenment.org/e16/e16-themes.git/commit/?id=8827dc93e2bf0b06d28fe333e622267cff19603d
commit 8827dc93e2bf0b06d28fe333e622267cff19603d Author: Kim Woelders <[email protected]> Date: Sun Aug 12 15:39:15 2018 +0200 Simplify autogen.sh --- autogen.sh | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/autogen.sh b/autogen.sh index 2fbd426..0d43361 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,13 +1,10 @@ #!/bin/sh # Run this to generate all the initial makefiles, etc. -rm -rf */install-sh */missing +rm -rf autom4te.cache aclocal.m4 -echo " aclocal $ACLOCAL_FLAGS" -aclocal $ACLOCAL_FLAGS -echo " automake --add-missing" -automake --add-missing -echo " autoconf" -autoconf +autoreconf -vif -./configure "$@" +if [ -z "$NOCONFIGURE" ]; then + ./configure "$@" +fi --
