From 465a1f65a17e4ad486dfbf8ba397c3879d90e6a6 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 19 Oct 2019 22:05:40 +0100 Subject: [PATCH] build system: Rename stamp-h to config.stamp This makes more sense and gets it out of the way of "st..." tab completion which we are going to want in a momen. Signed-off-by: Ian Jackson --- .gitignore | 2 +- Makefile.in | 12 ++++++------ configure | 2 +- configure.in | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 8db83a4..cd8f588 100644 --- a/.gitignore +++ b/.gitignore @@ -12,7 +12,7 @@ conffile.yy.[ch] /config.log /config.h /config.status -/stamp-h +/config.stamp Makefile /common.make diff --git a/Makefile.in b/Makefile.in index 45b4866..0328c1c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -87,13 +87,13 @@ ${srcdir}/configure: configure.in cd ${srcdir} && autoconf # autoheader might not change config.h.in, so touch a stamp file. -${srcdir}/config.h.in: stamp-h.in -${srcdir}/stamp-h.in: configure.in +${srcdir}/config.h.in: config.stamp.in +${srcdir}/config.stamp.in: configure.in cd ${srcdir} && autoheader - echo timestamp > ${srcdir}/stamp-h.in + echo timestamp > ${srcdir}/config.stamp.in -config.h: stamp-h -stamp-h: config.h.in config.status +config.h: config.stamp +config.stamp: config.h.in config.status ./config.status Makefile: Makefile.in config.status @@ -205,7 +205,7 @@ clean: realclean: clean $(RM) -f *~ Makefile config.h *.d \ config.log config.status config.cache \ - stamp-h Makefile.bak + config.stamp Makefile.bak distclean: realclean diff --git a/configure b/configure index 2519136..4321ed6 100755 --- a/configure +++ b/configure @@ -5994,7 +5994,7 @@ $as_echo "$as_me: executing $ac_file commands" >&6;} case $ac_file$ac_mode in - "default":C) echo timestamp >stamp-h ;; + "default":C) echo timestamp >config.stamp ;; esac done # for ac_tag diff --git a/configure.in b/configure.in index b021d57..658f9bb 100644 --- a/configure.in +++ b/configure.in @@ -96,7 +96,7 @@ else AC_MSG_WARN([Disabling IPv6 support]) fi -AC_OUTPUT(Makefile common.make test/Makefile, echo timestamp >stamp-h) +AC_OUTPUT(Makefile common.make test/Makefile, echo timestamp >config.stamp) AH_TOP([ #ifndef _CONFIG_H -- 2.30.2