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:
authorAlan McGovern <alan.mcgovern@gmail.com>2011-09-28 23:10:24 +0400
committerAlan McGovern <alan.mcgovern@gmail.com>2011-09-28 23:10:24 +0400
commit04c3cee7198bb325a96e5eb5968c5e270b6b2468 (patch)
tree23f633e2c76a28ef837977ec77c4e6a0e6758c4b /extras/MonoDevelop.Database
parent83e6b5997746f8fb39666c771350bb4efae878b2 (diff)
[Database] Attempt to fix the build on the bot
The bot appears to have a broken version of automake which is incapable of creating missing gnu compatibility files (like INSTALL), so just disable gnu mode to see if that fixes things.
Diffstat (limited to 'extras/MonoDevelop.Database')
-rwxr-xr-xextras/MonoDevelop.Database/autogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/MonoDevelop.Database/autogen.sh b/extras/MonoDevelop.Database/autogen.sh
index 59d1fc3a62..915583f0c1 100755
--- a/extras/MonoDevelop.Database/autogen.sh
+++ b/extras/MonoDevelop.Database/autogen.sh
@@ -60,8 +60,8 @@ aclocal $ACLOCAL_FLAGS || {
exit 1
}
-echo "Running automake --gnu $am_opt ..."
-automake --add-missing --gnu $am_opt ||
+echo "Running automake $am_opt ..."
+automake $am_opt ||
{ echo "**Error**: automake failed."; exit 1; }
echo "Running autoconf ..."