From e83d71d394901e6d08605bcd7f35b2f112fe73ea Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 29 May 2024 15:03:40 -0700 Subject: [PATCH] autoconf: rename configure.in to configure.ac Rename configure.in to configure.ac in accordance with current practice. Signed-off-by: H. Peter Anvin --- Makefile | 5 ++--- configure.in => configure.ac | 0 2 files changed, 2 insertions(+), 3 deletions(-) rename configure.in => configure.ac (100%) diff --git a/Makefile b/Makefile index 75a2042..8c779d3 100644 --- a/Makefile +++ b/Makefile @@ -63,11 +63,11 @@ aconfig.h: MCONFIG # aconfig.h.in to second resolution, so on a filesystem with subsecond # resolution it can appear older than configure (which isn't truncated). # So make it an order-only prerequisite to avoid looping regenerating it. -aconfig.h.in: configure.in aclocal.m4 | configure +aconfig.h.in: configure.ac aclocal.m4 | configure rm -f aconfig.h.in aconfig.h autoheader -configure: configure.in aclocal.m4 +configure: configure.ac aclocal.m4 rm -rf MCONFIG configure config.log aconfig.h *.cache autoconf @@ -76,4 +76,3 @@ version.h: version tftp.spec: tftp.spec.in version sed -e "s/@@VERSION@@/`cat version`/g" < $< > $@ || rm -f $@ - diff --git a/configure.in b/configure.ac similarity index 100% rename from configure.in rename to configure.ac