From: Jan Engelhardt Date: Fri, 25 May 2012 07:18:39 +0000 (+0200) Subject: xfsprogs: build: use new autoconf constructs X-Git-Tag: v3.1.9-rc2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f474cd4ff71e770c79fdad3f07d2b6741a9ecfca;p=thirdparty%2Fxfsprogs-dev.git xfsprogs: build: use new autoconf constructs Looks like AC_CONFIG_FILES existed since 2.14 already. Signed-off-by: Jan Engelhardt Reviewed-by: Christoph Hellwig Signed-off-by: Ben Myers --- diff --git a/configure.ac b/configure.ac index b927c3200..be57501ee 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,8 @@ -AC_INIT(include/libxfs.h) +AC_INIT([xfsprogs], [3.1.8]) AC_PREREQ(2.50) AC_CONFIG_AUX_DIR([.]) AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_SRCDIR([include/libxfs.h]) AC_CONFIG_HEADER(include/platform_defs.h) AC_PREFIX_DEFAULT(/usr) @@ -118,4 +119,5 @@ AC_TYPE_U32 AC_SIZEOF_POINTERS_AND_LONG AC_MANUAL_FORMAT -AC_OUTPUT(include/builddefs) +AC_CONFIG_FILES([include/builddefs]) +AC_OUTPUT