summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWookey <wookey@linaro.org>2019-07-20 04:24:33 +0200
committerMike Frysinger <vapier@gentoo.org>2022-11-12 21:25:22 +0700
commit8bd8bf4becf543fccb415493285ef578c15e8c15 (patch)
treef929187b807750830e4b76a342c1909af1c5b44e
parent6b26971c4407588e031a7e21c52b796b833b9c36 (diff)
downloadacl-8bd8bf4becf543fccb415493285ef578c15e8c15.tar.gz
Fix for incompatibility with autoconf2.13
This package 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 e5588d2..8f7d33b 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([acl], [2.3.1], [acl-devel@nongnu.org])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])