remove quoting, need to parse file as words
This commit is contained in:
parent
651b499e1c
commit
dc12ad3c10
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue