diff options
author | Joey Hess <joey@kitenet.net> | 2012-09-25 12:07:51 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-09-25 12:07:51 -0400 |
commit | a0d08422c551d6fb25b205718c5d41e9e964e037 (patch) | |
tree | c29e1521961d83ed83966aba41d0b9f66bd0c8be /ui-macos/git-annex.app/Contents | |
parent | e2d7cb16af74dc7fc18d8e7e5f6e950e08dbae3e (diff) |
fix from Jimmy
Diffstat (limited to 'ui-macos/git-annex.app/Contents')
-rwxr-xr-x | ui-macos/git-annex.app/Contents/MacOS/runshell | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-macos/git-annex.app/Contents/MacOS/runshell b/ui-macos/git-annex.app/Contents/MacOS/runshell index 40ae01bdb..78ba3bf0c 100755 --- a/ui-macos/git-annex.app/Contents/MacOS/runshell +++ b/ui-macos/git-annex.app/Contents/MacOS/runshell @@ -36,7 +36,7 @@ export PATH # libraries found in the path. With DYLD_FALLBACK_LIBRARY_PATH, the # system's versions of libraries will be used when possible, and otherwise # it will fall back to using the libraries bundled with this app. -for lib in "$(cat libdirs)"; do +for lib in "$(cat $base/libdirs)"; do DYLD_FALLBACK_LIBRARY_PATH="$base/$lib:$DYLD_FALLBACK_LIBRARY_PATH" done export DYLD_FALLBACK_LIBRARY_PATH |