commit: 73f7b82134bf07d977731b8dcc4bb271e4b82a54 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Oct 21 06:09:18 2021 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Oct 21 06:09:18 2021 +0000 URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=73f7b821
configure.ac: Mark as foreign to fix incompat. caused by README.md The README file rename has broken compatibility with older versions of autoconf. Mark the package as foreign to fix that. Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 9f64a0e..a47a3bc 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.69]) AC_INIT([sandbox], [2.25], [[email protected]]) -AM_INIT_AUTOMAKE([1.14 dist-xz no-dist-gzip silent-rules subdir-objects -Wall]) +AM_INIT_AUTOMAKE([1.14 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall]) AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm AC_CONFIG_HEADER([config.h]) AC_CONFIG_MACRO_DIR([m4])
