Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rwxr-xr-xautogen.sh2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index bf1ca19117..66da20e58b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-11-12 Aaron Bockover <abockover@novell.com>
+
+ * autogen.sh: Added -Wno-portability -Wno-syntax to make automake be
+ quiet about some things; typical Makefile.am files in Mono projects
+ can never conform to the perfect standards of automake
+
2007-11-09 Michael Hutchinson <mhutchinson@novell.com>
* contrib/contrib.mds:
diff --git a/autogen.sh b/autogen.sh
index 540a9403e6..76559b9391 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -75,7 +75,7 @@ aclocal $ACLOCAL_FLAGS || {
}
echo "Running automake --gnu $am_opt ..."
-automake --add-missing --gnu $am_opt ||
+automake --add-missing --gnu -Wno-portability -Wno-syntax $am_opt ||
{ echo "**Error**: automake failed."; exit 1; }
echo "Running autoconf ..."