summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-11-16 21:35:08 +0700
committerMike Frysinger <vapier@gentoo.org>2022-11-16 21:35:08 +0700
commita736c110caed4f0db62545acf9ea2119308aca1d (patch)
tree3a7d013a768afc7e359e41b47d4d9d5f5d245766
parent7b3423dcbf6775539124c52a59e8bc76e33596f6 (diff)
downloadattr-a736c110caed4f0db62545acf9ea2119308aca1d.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 b444e61..69b6fca 100644
--- a/configure.ac
+++ b/configure.ac
@@ -18,7 +18,7 @@ AC_PREREQ([2.69])
AC_INIT([attr], [2.5.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])