summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2017-07-15 20:59:41 +0200
committerBruno Haible <bruno@clisp.org>2017-07-15 21:01:00 +0200
commit793a229bb5681a976c7380e6280b6cf3aba5fa7f (patch)
treef0f531a83c70970858dc434adecdf029ee6cfc88
parenta459641a5356ff0f0350d69f4713eb416dbfde03 (diff)
downloadgperf-793a229bb5681a976c7380e6280b6cf3aba5fa7f.tar.gz
Get rid of autom4te.cache directories (left over from autoconf).
-rw-r--r--ChangeLog6
-rw-r--r--Makefile.devel12
2 files changed, 12 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 6bfa33c..a65386e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2017-07-15 Bruno Haible <bruno@clisp.org>
+
+ Get rid of autom4te.cache directories (left over from autoconf).
+ * Makefile.devel (configure, */configure, src/config.h.in): Remove
+ autom4te.cache directory after running autoconf or autoheader.
+
2017-04-16 Bruno Haible <bruno@clisp.org>
Initialize the Keyword::_lineno field through the constructor.
diff --git a/Makefile.devel b/Makefile.devel
index fc65a93..11b3361 100644
--- a/Makefile.devel
+++ b/Makefile.devel
@@ -11,25 +11,25 @@ CONFIGURES = configure lib/configure src/configure tests/configure doc/configure
configures : $(CONFIGURES)
configure : configure.ac aclocal.m4
- autoconf -I .
+ autoconf -I . && rm -rf autom4te.cache
lib/configure : lib/configure.ac aclocal.m4
- cd lib && autoconf -I ..
+ cd lib && autoconf -I .. && rm -rf autom4te.cache
src/configure : src/configure.ac aclocal.m4
- cd src && autoconf -I ..
+ cd src && autoconf -I .. && rm -rf autom4te.cache
tests/configure : tests/configure.ac aclocal.m4
- cd tests && autoconf -I ..
+ cd tests && autoconf -I .. && rm -rf autom4te.cache
doc/configure : doc/configure.ac aclocal.m4
- cd doc && autoconf -I ..
+ cd doc && autoconf -I .. && rm -rf autom4te.cache
check-configures : $(CONFIGURES)
set -e; for f in $(CONFIGURES); do bash -x -n $$f; done
src/config.h.in : src/configure.ac aclocal.m4
- cd src && autoheader -I ..
+ cd src && autoheader -I .. && rm -rf autom4te.cache
src/config.h_vms : src/config.h.in
cp src/config.h.in src/config.h_vms