diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-10 05:41:56 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-10 05:41:56 +0000 |
commit | be0f7c05d84732da3b88e45ab791375bfe417d3c (patch) | |
tree | 03e0a98112ad64d177fccc8696c0430d7e8cf09e /extra/gcc-uClibc | |
parent | 2a47ca7e9a0657b3d18e3ef920594c400d9c5c39 (diff) |
Fix up naming of ld.so so every uses the same define. The top level
was using one name and the ld.so-1 dir was using another (they happened
to be the same). Fix that.
-Erik
Diffstat (limited to 'extra/gcc-uClibc')
-rw-r--r-- | extra/gcc-uClibc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/gcc-uClibc/Makefile b/extra/gcc-uClibc/Makefile index efae00136..773a3b429 100644 --- a/extra/gcc-uClibc/Makefile +++ b/extra/gcc-uClibc/Makefile @@ -3,7 +3,7 @@ include $(TOPDIR)Rules.mak # NOTE: This may need to be modified for your system ifeq ($(LDSO_PRESENT), $(TARGET_ARCH)) - DYNAMIC_LINKER = $(INSTALL_DIR)/lib/$(UCLIBC_LDSO) + DYNAMIC_LINKER=$(INSTALL_DIR)/lib/$(UCLIBC_LDSO) else DYNAMIC_LINKER=$(SYSTEM_LDSO) endif |