diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-16 02:17:15 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-16 02:17:15 -0400 |
commit | 965fba28e8551ee49fd97cbde27fa606aaf5663c (patch) | |
tree | ad76ee1686e8b3ba004f85eaff246bc7272926b2 /standalone | |
parent | 70102d1cdcd6f204965010117579dabfb8e343ab (diff) |
make linker path absolute
Diffstat (limited to 'standalone')
-rwxr-xr-x | standalone/linux/runshell | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/standalone/linux/runshell b/standalone/linux/runshell index 40440a1bd..4481b0d7f 100755 --- a/standalone/linux/runshell +++ b/standalone/linux/runshell @@ -51,7 +51,7 @@ for lib in $(cat $base/libdirs); do GIT_ANNEX_LD_LIBRARY_PATH="$base/$lib:$GIT_ANNEX_LD_LIBRARY_PATH" done export GIT_ANNEX_LD_LIBRARY_PATH -GIT_ANNEX_LINKER=$(cat $base/linker) +GIT_ANNEX_LINKER="$base/$(cat $base/linker)" export GIT_ANNEX_LINKER GIT_ANNEX_SHIMMED="$base/shimmed" export GIT_ANNEX_SHIMMED |