From fa58240b6b0070a6a7e446fa7bd6034eac452542 Mon Sep 17 00:00:00 2001 From: Romain Bouvier Date: Tue, 12 May 2020 23:15:41 +0200 Subject: Switch to "foreign" mode for automake - This way, we don't need to provide a README file, now that we start to switch to README.md for markdown readme on gitlab - "[..] differences between the gnu and foreign flavours is that the former requires the presence of a number of files in the top-level of the projects": https://autotools.io/automake/options.html - It also stop warning when using GNU make syntax, but we already mandate gnu make, so it's not a problem --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index bc701f4..404a962 100755 --- a/autogen.sh +++ b/autogen.sh @@ -31,7 +31,7 @@ sed -e "s/@REVISION@/${revision}/g" < "configure.ac.in" > "configure.ac" (libtoolize && aclocal && - automake --add-missing --copy --gnu && + automake --add-missing --copy && autoconf) || exit 1 test -d m4 || mkdir m4 -- cgit v1.2.1