summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWookey <wookey@linaro.org>2019-07-20 04:14:35 +0200
committerMike Frysinger <vapier@gentoo.org>2022-11-12 21:23:13 +0700
commit542311e511e6e32bfde74d705a3c1355a548aba2 (patch)
tree558c03c43042a6eefbd5e369154a59a667d7a14a
parent61e5a3ad229d35d93be3a028a25ec335224a102a (diff)
downloadattr-542311e511e6e32bfde74d705a3c1355a548aba2.tar.gz
build: Fix for incompatibility with autoconf 2.13
This project will not build if autconf2.13 is installed. Adding AC_PREREQ allows the automatic checks to run the correct version of autconf, whichever is installed, or to get a clear error message about the problem. Signed-off-by: Guillem Jover <guillem@hadrons.org>
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 9cf420d..1bdcd75 100644
--- a/configure.ac
+++ b/configure.ac
@@ -14,6 +14,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+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])