From: Sami Kerola Date: Thu, 24 Dec 2020 20:22:59 +0000 (+0000) Subject: build-sys: silence non-POSIX variable name warning X-Git-Tag: v2.37-rc1~187^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a527a360191648d272db76832150e9b360ef0fd6;p=thirdparty%2Futil-linux.git build-sys: silence non-POSIX variable name warning Easiest way to get rid of the following warning is to ignore the warning. This might cause people who use non-GNU make to have hard time, but are there such people compiling this project? sys-utils/Makemodule.am:226: warning: addprefix sys-utils/,$(SETARCH_LINKS: non-POSIX variable name sys-utils/Makemodule.am:226: (probably a GNU make extension) Signed-off-by: Sami Kerola --- diff --git a/configure.ac b/configure.ac index 03645b3f33..d56598a6d2 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ AC_CONFIG_MACRO_DIR([m4]) dnl AC_USE_SYSTEM_EXTENSIONS must be called before any macros that run dnl the compiler (like LT_INIT) to avoid autoconf errors. AC_USE_SYSTEM_EXTENSIONS -AM_INIT_AUTOMAKE([-Wall foreign 1.10 tar-pax no-dist-gzip dist-xz subdir-objects]) +AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign 1.10 tar-pax no-dist-gzip dist-xz subdir-objects]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])], [AC_SUBST([AM_DEFAULT_VERBOSITY], [1])])