From 525045fd122d34f83b7663fdbb3e89ccdb4df82c Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 25 Sep 2012 12:07:51 -0400 Subject: [PATCH] fix from Jimmy --- ui-macos/git-annex.app/Contents/MacOS/runshell | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-macos/git-annex.app/Contents/MacOS/runshell b/ui-macos/git-annex.app/Contents/MacOS/runshell index 40ae01bdbe..78ba3bf0ce 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