diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-12-09 00:06:32 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-12-09 00:06:32 +0000 |
commit | b6127d0d76b427301aa0227a2b88aab67fd3939a (patch) | |
tree | 21c0c3ea3bd813664c93aa488780709d5e92fa68 | |
parent | afb1cd9b2c8cfcf305c1920b45de54b3e78da32a (diff) |
Cleanup the case when using the system shared lib loader
-Erik
-rw-r--r-- | Rules.mak | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -196,8 +196,8 @@ ifeq ($(HAVE_SHARED),y) BUILD_DYNAMIC_LINKER:=$(shell cd $(TOPDIR) && pwd)/lib/$(UCLIBC_LDSO) else LDSO:=$(SYSTEM_LDSO) - DYNAMIC_LINKER:=/lib/$(notdir $(SYSTEM_LDSO)) - BUILD_DYNAMIC_LINKER:=/lib/$(notdir $(SYSTEM_LDSO)) + DYNAMIC_LINKER:=/lib/$(strip $(subst ",, $(notdir $(SYSTEM_LDSO)))) + BUILD_DYNAMIC_LINKER:=/lib/$(strip $(subst ",, $(notdir $(SYSTEM_LDSO)))) endif endif |