summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-10-18 23:01:46 +0000
committerEric Andersen <andersen@codepoet.org>2002-10-18 23:01:46 +0000
commit2e70e3a982dba018063109f9c88bb58dacb6ce5f (patch)
tree86b71ed11037c48f093a8c747e8631687cdfb38e /Makefile
parent6bc59b1625c660a7f9391ff085d1073f2b984b63 (diff)
Echo mmu-less warning where appropriate
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index d1de706f0..c3689541c 100644
--- a/Makefile
+++ b/Makefile
@@ -161,12 +161,12 @@ uClibc_config: Makefile Config
else \
echo "#undef __UCLIBC_HAS_IPV6__" >> include/bits/uClibc_config.h ; \
fi
- # [For now we make the assumption that a linux system without an
- # MMU must be uClinux, and must have a broken munmap (both
- # assumptions are a bit dodgy, but can be changed in the future).]
@if [ "$(HAS_MMU)" = "true" ] ; then \
echo "#define __UCLIBC_HAS_MMU__ 1" >> include/bits/uClibc_config.h ; \
else \
+ echo "For now we make the assumption that a linux system without an"; \
+ echo "MMU must be uClinux, and must have a broken munmap (both"; \
+ echo "assumptions are a bit dodgy, but can be changed in the future)."; \
echo "#undef __UCLIBC_HAS_MMU__" >> include/bits/uClibc_config.h ; \
echo "#define __UCLIBC_UCLINUX_BROKEN_MUNMAP__ 1" >> include/bits/uClibc_config.h ; \
fi