>From f62e25904a9946592665a3212849efc27a158be7 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Fri, 18 Sep 2015 10:36:27 +0200 Subject: [PATCH 1/2] AUTOMAKE: Disable portability warnings We already require GNU make extenstions to build manual pages. src/man/Makefile.am:46: warning: wildcard $(srcdir: non-POSIX variable name src/man/Makefile.am:46: (probably a GNU make extension) src/man/Makefile.am:125: warning: wildcard $(srcdir: non-POSIX variable name src/man/Makefile.am:125: (probably a GNU make extension) src/man/Makefile.am:128: warning: addprefix $(srcdir: non-POSIX variable name src/man/Makefile.am:128: (probably a GNU make extension) src/man/Makefile.am:128: warning: shell grep '\[type:docbook\]' $(PO4A_CONFIG: non-POSIX variable name src/man/Makefile.am:128: (probably a GNU make extension) src/man/Makefile.am:129: warning: filter-out $(CFG_PAGES: non-POSIX variable name src/man/Makefile.am:129: (probably a GNU make extension) --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 254752bc23b20fd13eb1cec9ebdfe72e8ec91590..291deee1ea4350eeb8e971d93b259a8d42044cca 100644 --- a/configure.ac +++ b/configure.ac @@ -14,7 +14,7 @@ m4_ifdef([AC_USE_SYSTEM_EXTENSIONS], CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE" -AM_INIT_AUTOMAKE([-Wall foreign subdir-objects tar-pax]) +AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects tar-pax]) AM_PROG_CC_C_O m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) AC_DISABLE_STATIC -- 2.5.0