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-09-18 09:55:03 +0400
committerAlan McGovern <alan@xamarin.com>2013-09-18 09:55:40 +0400
commit04c0e3de0b2e6ceb2a4667914179b3d3294ad5ba (patch)
tree3a2c813da558ce572e8ee514c225442381ee493c /configure
parent330f5210bcc431bd241fcba0365fc59f6be277dc (diff)
[build] Flip the order of the PATH exports
We need to export monos bin directory first so we use the right pkg-config under all circumstances.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index e358d4b55a..7378c9e8d0 100755
--- a/configure
+++ b/configure
@@ -259,7 +259,7 @@ fi
if test `uname` = "Darwin"; 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 PATH="/Library/Frameworks/Mono.framework/Versions/Current/bin:$PATH"
export ACLOCAL_FLAGS="-I /Library/Frameworks/Mono.framework/Versions/Current/share/aclocal"
fi
fi