avoid shimming ld.so!
This commit is contained in:
parent
67e7c7c4bb
commit
73492b263a
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -146,7 +146,7 @@ linuxstandalone-nobuild: Build/Standalone
|
||||||
# Install linker shim for each binary. Note that each binary is put
|
# Install linker shim for each binary. Note that each binary is put
|
||||||
# in its own separate directory, to avoid eg git looking for
|
# in its own separate directory, to avoid eg git looking for
|
||||||
# binaries in its directory rather than in PATH.
|
# 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 \
|
if file "$$file" | grep ELF | egrep -q 'executable|shared object' && test -x "$$file"; then \
|
||||||
base=$$(basename "$$file"); \
|
base=$$(basename "$$file"); \
|
||||||
mkdir -p "$(LINUXSTANDALONE_DEST)/shimmed/$$base"; \
|
mkdir -p "$(LINUXSTANDALONE_DEST)/shimmed/$$base"; \
|
||||||
|
|
Loading…
Reference in a new issue