aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Kent <raven@themaw.net>2023-11-02 12:46:13 +0800
committerIan Kent <raven@themaw.net>2023-11-02 14:16:00 +0800
commitb6974351865a39bf71c57ea8716b6c3cf40f3159 (patch)
tree2e731133c49f2e1e8ca1ac8852fbbc66b45dc147
parenta2b99f1ff5d4f62926e027df2de5a96aa941391e (diff)
downloadautofs-b6974351865a39bf71c57ea8716b6c3cf40f3159.tar.gz
autofs-5.1.8 - rename configure.in to configure.ac
Signed-off-by: Ian Kent <raven@themaw.net>
-rw-r--r--CHANGELOG1
-rw-r--r--Makefile12
-rw-r--r--Makefile.rules2
-rw-r--r--configure.ac (renamed from configure.in)2
4 files changed, 9 insertions, 8 deletions
diff --git a/CHANGELOG b/CHANGELOG
index a87f16eb..450990ba 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -103,6 +103,7 @@
- fix typo in create_cmd_pipe_fifo().
- add null check in master_kill().
- be more careful with cmd pipe at exit.
+- rename configure.in to configure.ac.
19/10/2021 autofs-5.1.8
- add xdr_exports().
diff --git a/Makefile b/Makefile
index 99db2c75..45454eef 100644
--- a/Makefile
+++ b/Makefile
@@ -39,8 +39,8 @@ mrproper distclean: clean
find . -noleaf \( -name '*~' -o -name '#*' -o -name '*.orig' -o -name '*.rej' -o -name '*.old' \) -print0 | xargs -0 rm -f
-rm -f include/config.h Makefile.conf config.* .autofs-*
echo x > .autofs-`cat .version`
- sed -e "s/(\.autofs-[0-9.]\+)/(.autofs-`cat .version`)/" < configure.in > configure.in.tmp
- mv -f configure.in.tmp configure.in
+ sed -e "s/(\.autofs-[0-9.]\+)/(.autofs-`cat .version`)/" < configure.ac > configure.ac.tmp
+ mv -f configure.ac.tmp configure.ac
rm -f configure
$(MAKE) configure
@@ -51,16 +51,16 @@ VERSION := $(shell cat .version)
backup: mrproper
cd .. ; tar zcf - $(PKGDIR) | gzip -9 > autofs-$(VERSION)-bu-$(TODAY).tar.gz
-configure: configure.in aclocal.m4
+configure: configure.ac aclocal.m4
autoconf
autoheader
rm -rf config.* *.cache
-configure.in: .version
+configure.ac: .version
-rm -f .autofs-*
echo x > .autofs-`cat .version`
- sed -e "s/(\.autofs-[0-9.]\+)/(.autofs-`cat .version`)/" < configure.in > configure.in.tmp
- mv -f configure.in.tmp configure.in
+ sed -e "s/(\.autofs-[0-9.]\+)/(.autofs-`cat .version`)/" < configure.ac > configure.ac.tmp
+ mv -f configure.ac.tmp configure.ac
-include Makefile.private
diff --git a/Makefile.rules b/Makefile.rules
index 43cf2963..6ce39e54 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -6,7 +6,7 @@
SUBDIRS = lib daemon modules man
INCDIRS = include
INCFILES = COPYING COPYRIGHT NEWS README* TODO Makefile Makefile.rules \
- Makefile.conf.in .version .autofs-* configure.in aclocal.m4 \
+ Makefile.conf.in .version .autofs-* configure.ac aclocal.m4 \
configure *.patch autofs.spec
ifeq ($(FEDFS), 1)
diff --git a/configure.in b/configure.ac
index 45f32340..d9567ef2 100644
--- a/configure.in
+++ b/configure.ac
@@ -1,5 +1,5 @@
#
-# configure.in for the autofs daemon
+# configure.ac for the autofs daemon
AC_PREREQ(2.5)