diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-08-08 17:03:36 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-08-08 17:03:36 +0000 |
commit | c3bbc0eafdae7a50c46ec61f3352821b7c28ea85 (patch) | |
tree | a3f8e5d23017c4301813b6c6302d1277ed216efd /Rules.mak | |
parent | c4257d720039474be6804b20c4d133a65aa1d265 (diff) |
This syncs things up with my local tree. Mainly changes installer
issues, and syns things (as far as I am willing) with Dave Schleef's
tree. We may need to go another round or so, but we do seem to be
converging...
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -89,13 +89,14 @@ SYSTEM_LDSO=$(shell for each in `$(CC) -print-search-dirs|grep ^libraries|sed -e ifeq ($(LDSO_PRESENT), $(TARGET_ARCH)) LDSO=$(TOPDIR)lib/$(UCLIBC_LDSO) - DYNAMIC_LINKER=/lib/$(UCLIBC_LDSO) + DYNAMIC_LINKER=$(DESTDIR)$(PREFIX)/lib/$(UCLIBC_LDSO) BUILD_DYNAMIC_LINKER=$(shell cd $(TOPDIR)lib; pwd)/$(UCLIBC_LDSO) else LDSO=$(SYSTEM_LDSO) DYNAMIC_LINKER=/lib/$(notdir $(SYSTEM_LDSO)) BUILD_DYNAMIC_LINKER=$(shell cd $(TOPDIR)lib; pwd)/$(UCLIBC_LDSO) endif +LIBRARY_CACHE=#-DUSE_CACHE # Disable libm if HAS_FLOATING_POINT isn't true. ifneq ($(HAS_FLOATING_POINT),true) |