summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-05 22:55:17 +0000
committerEric Andersen <andersen@codepoet.org>2001-01-05 22:55:17 +0000
commitabdc3e4d06db2b9d93c509774fc7c4fde918ec8e (patch)
treeb89dddfc07e5948bed28ad788ee28b68667ad65f /Makefile
parent723a9aa88fd4927c87ce121822bd670550bbf0ed (diff)
Make error msg even friendlier.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8412496a0..d51c44ed5 100644
--- a/Makefile
+++ b/Makefile
@@ -45,8 +45,11 @@ headers: dummy
@rm -f include/asm include/net include/linux include/bits
@ln -s $(KERNEL_SOURCE)/include/asm-$(ARCH_DIR) include/asm
@if [ ! -f include/asm/unistd.h ] ; then \
- echo "You didn't set KERNEL_SOURCE, TARGET_ARCH or HAS_MMU correctly in Config"; \
+ echo " "; \
echo "The path '$(KERNEL_SOURCE)/include/asm-$(ARCH_DIR)' doesn't exist."; \
+ echo "I bet you didn't set KERNEL_SOURCE, TARGET_ARCH or HAS_MMU in \`Config'"; \
+ echo "correctly. Please edit \`Config' and fix these settings."; \
+ echo " "; \
/bin/false; \
fi;
@ln -s $(KERNEL_SOURCE)/include/net include/net