diff options
author | Joey Hess <joey@kitenet.net> | 2012-12-09 12:59:34 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-12-09 12:59:34 -0400 |
commit | 10567a63ffdc61c023923da91dbd57f39935c080 (patch) | |
tree | fb119560a15cbebfa9c634cae65215616021cfe0 /standalone/osx/git-annex.app/Contents | |
parent | 0bffe4b2c81715bc9068d19cf408f642126774d2 (diff) |
remove unused cruft
Diffstat (limited to 'standalone/osx/git-annex.app/Contents')
-rwxr-xr-x | standalone/osx/git-annex.app/Contents/MacOS/runshell | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/standalone/osx/git-annex.app/Contents/MacOS/runshell b/standalone/osx/git-annex.app/Contents/MacOS/runshell index e972b777f..03b6befdf 100755 --- a/standalone/osx/git-annex.app/Contents/MacOS/runshell +++ b/standalone/osx/git-annex.app/Contents/MacOS/runshell @@ -1,6 +1,6 @@ #!/bin/sh -# Runs a shell command (or interactive shell) using the binaries and -# libraries bundled with this app. +# Runs a shell command (or interactive shell) using the binaries +# bundled with this app. set -e @@ -46,20 +46,6 @@ export ORIG_PATH PATH=$base/bin:$PATH export PATH -# This makes the linker first look in the library directories bundled -# in this app. Only if it fails to find a library there will a system -# library be used. -# -# This seems to work better than DYLD_LIBRARY_PATH, which can force -# the wrong version of a library to be used, if the app bundles two -# different versions of a single library. And it seems to work better -# than DYLD_FALLBACK_LIBRARY_PATH, which fails to override old system -# versions of libraries when a program in the app needs a newer version. -#ORIG_DYLD_ROOT_PATH="$DYLD_ROOT_PATH" -#export ORIG_DYLD_ROOT_PATH -#DYLD_ROOT_PATH=$base -#export DYLD_ROOT_PATH - ORIG_GIT_EXEC_PATH="$GIT_EXEC_PATH" export ORIG_GIT_EXEC_PATH GIT_EXEC_PATH=$base |