summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid McCullough <davidm@snapgear.com>2001-07-04 11:19:24 +0000
committerDavid McCullough <davidm@snapgear.com>2001-07-04 11:19:24 +0000
commit0d85794e9b8a873a44a373d4936c5c26e1a574c9 (patch)
treeb8c596c78d45ec02fc9ae04ea25f721c386e47f6 /Makefile
parentca240d0eec47a0d6ef981a16fa2e0da500ff6424 (diff)
If HAS_MMU is false, then use asm-$(TARGET_ARCH)nommu rather than
asm-$(TARGET_ARCH) as the link for include/asm.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fa75f2ba3..96f1d88a1 100644
--- a/Makefile
+++ b/Makefile
@@ -66,7 +66,11 @@ headers: dummy
@if [ $(TARGET_ARCH) = "powerpc" ];then \
ln -s $(KERNEL_SOURCE)/include/asm-ppc include/asm; \
else \
- ln -s $(KERNEL_SOURCE)/include/asm-$(TARGET_ARCH) include/asm; \
+ if [ $(HAS_MMU) != "true" ]; then \
+ ln -s $(KERNEL_SOURCE)/include/asm-$(TARGET_ARCH)nommu include/asm;\
+ else \
+ ln -s $(KERNEL_SOURCE)/include/asm-$(TARGET_ARCH) include/asm; \
+ fi; \
fi;
@if [ ! -f include/asm/unistd.h ] ; then \
echo " "; \