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:
authorMichael Hutchinson <mhutchinson@novell.com>2010-10-19 22:38:43 +0400
committerMichael Hutchinson <mhutchinson@novell.com>2010-10-19 22:40:02 +0400
commitcb22d587ec23b51ab14bc7f3fc8529d906cede92 (patch)
tree772d19f9637cee7f11adbb4da5503b851a6fd59a /main/build
parentb042318069a6b47a5c2d5fec51b0246ec4233a11 (diff)
[Mac] Defend against modified DYLD_FALLBACK_LIBRARY_PATH
Diffstat (limited to 'main/build')
-rwxr-xr-xmain/build/MacOSX/mdtool2
-rwxr-xr-xmain/build/MacOSX/monodevelop2
2 files changed, 2 insertions, 2 deletions
diff --git a/main/build/MacOSX/mdtool b/main/build/MacOSX/mdtool
index df8c1514b3..afa157034e 100755
--- a/main/build/MacOSX/mdtool
+++ b/main/build/MacOSX/mdtool
@@ -4,7 +4,7 @@
# Michael Hutchinson (mhutchinson@novell.com)
MONO_FRAMEWORK_PATH=/Library/Frameworks/Mono.framework/Versions/Current
-export DYLD_FALLBACK_LIBRARY_PATH=$MONO_FRAMEWORK_PATH/lib:/lib:/usr/lib
+export DYLD_FALLBACK_LIBRARY_PATH="$MONO_FRAMEWORK_PATH/lib:/lib:/usr/lib:$DYLD_FALLBACK_LIBRARY_PATH"
#we need lots of file handles
ulimit -n 1024
diff --git a/main/build/MacOSX/monodevelop b/main/build/MacOSX/monodevelop
index 449884fcb6..05f04f8cb3 100755
--- a/main/build/MacOSX/monodevelop
+++ b/main/build/MacOSX/monodevelop
@@ -4,7 +4,7 @@
# Michael Hutchinson (mhutchinson@novell.com)
MONO_FRAMEWORK_PATH=/Library/Frameworks/Mono.framework/Versions/Current
-export DYLD_FALLBACK_LIBRARY_PATH="$MONO_FRAMEWORK_PATH/lib:$DYLD_FALLBACK_LIBRARY_PATH"
+export DYLD_FALLBACK_LIBRARY_PATH="$MONO_FRAMEWORK_PATH/lib:/lib:/usr/lib:$DYLD_FALLBACK_LIBRARY_PATH"
#we need lots of file handles
ulimit -n 1024