summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-11-16 21:34:19 +0700
committerMike Frysinger <vapier@gentoo.org>2022-11-16 21:34:19 +0700
commit96731ca51e23c02073500114418a847d64d05e10 (patch)
treef9e17423c2c82a7bfb64842581ffd50372aeea07
parent9699739e9a2aa23ca68a556059457ee06611c197 (diff)
downloadacl-96731ca51e23c02073500114418a847d64d05e10.tar.gz
build: switch to AC_CONFIG_HEADERS
The AC_CONFIG_HEADER macro was deprecated a while ago, and the new one behaves the same but without triggering a warning.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 8f7d33b..87864eb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -18,7 +18,7 @@ AC_PREREQ([2.69])
AC_INIT([acl], [2.3.1], [acl-devel@nongnu.org])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
-AC_CONFIG_HEADER([include/config.h])
+AC_CONFIG_HEADERS([include/config.h])
AC_PREFIX_DEFAULT(/usr)
AM_INIT_AUTOMAKE([-Wall foreign 1.11 dist-xz subdir-objects])