summaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-06-18 20:05:49 +0000
committerEric Andersen <andersen@codepoet.org>2001-06-18 20:05:49 +0000
commit08e0c24b47a9abfd5536ee0cda1d0204bf7cc93c (patch)
treed7132ca3f2d25babc68ad5da777e731bee6c5abd /Rules.mak
parent4db5f2c0a1e1a310c51bf2612a9e08dc22262b1e (diff)
This commit finishes adding support for the old m68k-coff toolchains by
working around a missing header file in the compiler shipped with the uCsimm and uCdimm. This should make the folk in Toronto happy, since now they can use the latest CVS version of uClibc. -Erik
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rules.mak b/Rules.mak
index 4d9c8660d..f44ea8d9b 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -71,8 +71,8 @@ endif
NATIVE_ARCH = $(shell uname -m | sed -e 's/i.86/i386/' -e 's/sparc.*/sparc/' -e 's/arm.*/arm/g' -e 's/m68k.*/m68k/' -e 's/ppc/powerpc/g')
-ifeq ($(strip $(HAS_MMU)),true)
- DO_SHARED=shared
+ifeq ($(strip $(HAVE_SHARED)),true)
+ DO_SHARED=shared
endif
LDSO_PRESENT=$(strip $(shell cd $(TOPDIR)/ldso/d-link; ls -d $(TARGET_ARCH) 2>/dev/null))