From 0d85794e9b8a873a44a373d4936c5c26e1a574c9 Mon Sep 17 00:00:00 2001 From: David McCullough Date: Wed, 4 Jul 2001 11:19:24 +0000 Subject: If HAS_MMU is false, then use asm-$(TARGET_ARCH)nommu rather than asm-$(TARGET_ARCH) as the link for include/asm. --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 " "; \ -- cgit v1.2.3