summaryrefslogtreecommitdiff
path: root/Makefile.devel
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2003-01-20 14:15:41 +0000
committerBruno Haible <bruno@clisp.org>2003-01-20 14:15:41 +0000
commit6bc6a5c4e024759bdf7cbeb0f32c0300942e7c16 (patch)
tree307141cdc458401632348d98692c36c9ad4f9a03 /Makefile.devel
parent6eb5640c0d4cf56efa588ff43ff193979b98be39 (diff)
downloadgperf-6bc6a5c4e024759bdf7cbeb0f32c0300942e7c16.tar.gz
Use autoconf-2.52.
Diffstat (limited to 'Makefile.devel')
-rw-r--r--Makefile.devel10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.devel b/Makefile.devel
index cd6b628..7e920ee 100644
--- a/Makefile.devel
+++ b/Makefile.devel
@@ -11,19 +11,19 @@ CONFIGURES = configure lib/configure src/configure tests/configure doc/configure
configures : $(CONFIGURES)
configure : configure.in aclocal.m4
- autoconf -l .
+ autoconf-2.52 -l .
lib/configure : lib/configure.in aclocal.m4
- cd lib && autoconf -l ..
+ cd lib && autoconf-2.52 -l ..
src/configure : src/configure.in aclocal.m4
- cd src && autoconf -l ..
+ cd src && autoconf-2.52 -l ..
tests/configure : tests/configure.in aclocal.m4
- cd tests && autoconf -l ..
+ cd tests && autoconf-2.52 -l ..
doc/configure : doc/configure.in aclocal.m4
- cd doc && autoconf -l ..
+ cd doc && autoconf-2.52 -l ..
check-configures : $(CONFIGURES)
set -e; for f in $(CONFIGURES); do bash -x -n $$f; done