diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-03 23:21:32 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-03 23:21:32 +0000 |
commit | b40433694dae294773305f70d0f29d4f19c7408f (patch) | |
tree | 193011b943538109745cd6488277e52eb48b80a0 /Makefile | |
parent | be03a186ed1fb95ba9f07ab81e698fdd2ca0e553 (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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 \ |