From c8ac56c2f488244d61f7f18cd49219b58f558fb3 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Wed, 31 Oct 2012 20:40:56 +0000 Subject: [PATCH] e: stop warning about GNU make extension We know wildcard is an extension of GNU make and we don't need to be remembered every single compilation. Remove noise like below: doc/Makefile.am:42: warning: wildcard img/*.*: non-POSIX variable name doc/Makefile.am:42: (probably a GNU make extension) SVN revision: 78723 --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 9b3aff66c..ac7fed65b 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,6 +1,6 @@ #!/bin/sh -autoreconf --symlink --install +autoreconf --symlink --install -Wno-portability if [ -z "$NOCONFIGURE" ]; then ./configure -C "$@"