diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-20 21:10:46 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-20 21:10:46 -0400 |
commit | 509aa9f4968ef91cc19e8b68b7a3c2f8e6a72862 (patch) | |
tree | 45751798144e75388bf8126e49341369c6390056 | |
parent | 24c4d149ea9ea790100a5cea33425d76a2e44344 (diff) |
avoid shimming ld.so!
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -146,7 +146,7 @@ linuxstandalone-nobuild: Build/Standalone # Install linker shim for each binary. Note that each binary is put # in its own separate directory, to avoid eg git looking for # binaries in its directory rather than in PATH. - for file in $$(find "$(LINUXSTANDALONE_DEST)" -type f); do \ + for file in $$(find "$(LINUXSTANDALONE_DEST)" -type f | grep -v \.so); do \ if file "$$file" | grep ELF | egrep -q 'executable|shared object' && test -x "$$file"; then \ base=$$(basename "$$file"); \ mkdir -p "$(LINUXSTANDALONE_DEST)/shimmed/$$base"; \ |