From: Andre Noll Date: Sun, 20 Apr 2014 02:03:39 +0000 (+0000) Subject: build: Run autom4te instead of autoconf. X-Git-Tag: v0.5.4~46^2~2 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=53f735e056015f9a1021c14b5d93f57f14035c62 build: Run autom4te instead of autoconf. This is equivalent, except we have the option to disable the autom4te cache. This cache does not give significant speedups but creates the annoying directory. --- diff --git a/Makefile.real b/Makefile.real index 9ba29774..a8e4767d 100644 --- a/Makefile.real +++ b/Makefile.real @@ -320,7 +320,6 @@ clean2: clean distclean: clean2 test-clean @[ -z "$(Q)" ] || echo 'DISTCLEAN' $(Q) rm -f Makefile autoscan.log config.status config.log error2.h - $(Q) rm -rf autom4te.cache $(Q) rm -f GPATH GRTAGS GSYMS GTAGS maintainer-clean: distclean diff --git a/autogen.sh b/autogen.sh index 2e138de2..d432adbb 100755 --- a/autogen.sh +++ b/autogen.sh @@ -14,7 +14,12 @@ echo preparing, parallel=$n... if test -f Makefile; then make maintainer-clean > /dev/null 2>&1 fi -autoconf +autom4te \ + --language=autoconf \ + --output=configure \ + --no-cache \ + --warnings=all \ + configure.ac autoheader echo configuring... ./configure $@ > /dev/null