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@xamarin.com>2013-08-28 07:55:50 +0400
committerAlan McGovern <alan@xamarin.com>2013-08-28 07:55:50 +0400
commit112750288a365e4ba4b2669e2970cbaa01b5641c (patch)
treed2e870d08de96e769626f14944bf794feadb3739 /configure
parent026c297fd0c2a36e99c67d33bed64d379232f6e5 (diff)
[build] For now always export our env vars on Wrench
Wrench currently exports a broken DYLD_FALLBACK_LIBRARY_PATH. Since we now rely on this either exported with valid values or not exported at all, this breaks our build.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 7dfda29bdf..e358d4b55a 100755
--- a/configure
+++ b/configure
@@ -257,7 +257,7 @@ if [ x$select == xyes -o ! -a profiles/$profile ]; then
fi
if test `uname` = "Darwin"; then
- if test "x$DYLD_FALLBACK_LIBRARY_PATH" = "x"; then
+ if test "x$BUILD_REVISION" != "x" -o "x$DYLD_FALLBACK_LIBRARY_PATH" = "x"; then
export DYLD_FALLBACK_LIBRARY_PATH="/Library/Frameworks/Mono.framework/Versions/Current/lib:/lib:/usr/lib"
export PATH="$PATH:/Library/Frameworks/Mono.framework/Versions/Current/bin"
export ACLOCAL_FLAGS="-I /Library/Frameworks/Mono.framework/Versions/Current/share/aclocal"