summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-03 23:21:32 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-03 23:21:32 +0000
commitb40433694dae294773305f70d0f29d4f19c7408f (patch)
tree193011b943538109745cd6488277e52eb48b80a0 /Makefile
parentbe03a186ed1fb95ba9f07ab81e698fdd2ca0e553 (diff)
Fix a bug noted by David Beamonte <dbeamonte@intelnet.es>, so that
we define "__linux__" in uClibc_config.h, not "__linux_".
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fc2ced258..8935ea227 100644
--- a/Makefile
+++ b/Makefile
@@ -186,7 +186,7 @@ uClibc_config.h: Config
@echo "#error Never include <bits/uClibc_config.h> directly; use <features.h> instead." >> uClibc_config.h
@echo "#endif" >> uClibc_config.h
@echo "#define linux 1" >> uClibc_config.h
- @echo "#define __linux_ 1" >> uClibc_config.h
+ @echo "#define __linux__ 1" >> uClibc_config.h
@if [ "$(HAS_MMU)" = "true" ] ; then \
echo "#define __UCLIBC_HAS_MMU__ 1" >> uClibc_config.h ; \
else \