From: Christian Persch Date: Thu, 19 Mar 2009 20:12:04 +0000 (+0000) Subject: Add -Wno-portability to automake invocation. Bug #529120, patch by Philip Van Hoof. X-Git-Tag: 2.28.0~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d8f6323f8f5e42af52efdf4deb94d8692971011;p=platform%2Fupstream%2Fgnome-common.git Add -Wno-portability to automake invocation. Bug #529120, patch by Philip Van Hoof. svn path=/trunk/; revision=3923 --- diff --git a/ChangeLog b/ChangeLog index 2ccf8b5..1392d0f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -53,6 +53,11 @@ 2007-01-29 Christian Persch + * Add -Wno-portability to automake invocation. Bug #529120, patch by Philip + Van Hoof. + +2007-01-29 Christian Persch + * macros2/gnome-compiler-flags.m4: Fix --enable-cxx-warnings checks. Bug #360693. diff --git a/macros2/gnome-autogen.sh b/macros2/gnome-autogen.sh index f28f42c..e2ce97f 100644 --- a/macros2/gnome-autogen.sh +++ b/macros2/gnome-autogen.sh @@ -467,7 +467,7 @@ for configure_ac in $configure_files; do cp -pf INSTALL INSTALL.autogen_bak fi if [ $REQUIRED_AUTOMAKE_VERSION != 1.4 ]; then - $AUTOMAKE --gnu --add-missing --force --copy || exit 1 + $AUTOMAKE --gnu --add-missing --force --copy -Wno-portability || exit 1 else $AUTOMAKE --gnu --add-missing --copy || exit 1 fi