summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2009-03-19 20:12:04 +0000
committerChristian Persch <chpe@src.gnome.org>2009-03-19 20:12:04 +0000
commit7d8f6323f8f5e42af52efdf4deb94d8692971011 (patch)
tree7d84cc60c0955c6e60bdb1bc756f0e09f6d28fbd
parentb6c649a531e1a2df8a90b585c04aad72ed87c1ad (diff)
downloadshared-mime-info-7d8f6323f8f5e42af52efdf4deb94d8692971011.tar.gz
Add -Wno-portability to automake invocation. Bug #529120, patch by Philip Van Hoof.
svn path=/trunk/; revision=3923
-rw-r--r--ChangeLog5
-rw-r--r--macros2/gnome-autogen.sh2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2ccf8b57..1392d0f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -53,6 +53,11 @@
2007-01-29 Christian Persch <chpe@svn.gnome.org>
+ * Add -Wno-portability to automake invocation. Bug #529120, patch by Philip
+ Van Hoof.
+
+2007-01-29 Christian Persch <chpe@svn.gnome.org>
+
* 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 f28f42cb..e2ce97f9 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