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:
authorMike Kestner <mkestner@gmail.com>2008-11-06 18:10:33 +0300
committerMike Kestner <mkestner@gmail.com>2008-11-06 18:10:33 +0300
commitca2e54814a4e9da74fb5570263bd225ae0f63cf7 (patch)
tree9252e2c2db541bfeb8a0040dc3ebc6a3b17a2651 /main/autogen.sh
parent66e6f58acddb4cd65258fff44b2c543e7f821237 (diff)
use automake --foreign to avoid a bunch of useless warnings
svn path=/trunk/monodevelop/; revision=118111
Diffstat (limited to 'main/autogen.sh')
-rwxr-xr-xmain/autogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/autogen.sh b/main/autogen.sh
index 97b55537fa..008df44421 100755
--- a/main/autogen.sh
+++ b/main/autogen.sh
@@ -62,8 +62,8 @@ aclocal $ACLOCAL_FLAGS || {
exit 1
}
-echo "Running automake --gnu $am_opt ..."
-automake --add-missing --gnu -Wno-portability -Wno-syntax $am_opt ||
+echo "Running automake --foreign $am_opt ..."
+automake --add-missing --foreign -Wno-portability -Wno-syntax $am_opt ||
{ echo "**Error**: automake failed."; exit 1; }
echo "Running autoconf ..."