diff options
author | Joey Hess <joey@kitenet.net> | 2012-09-28 11:52:02 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-09-28 11:52:02 -0400 |
commit | 239b8ae76ec2c66bb63fb982f8bad86b5a94bb51 (patch) | |
tree | 7a41ed2ebabcead2b8ea1ec26f16e9ef8a030d6c /ui-macos | |
parent | abb8697ab64b03075bb33f616e54eb8c7dea3f07 (diff) |
remove quoting, need to parse file as words
Diffstat (limited to 'ui-macos')
-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 ade917686..870c292eb 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 $base/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 |