diff options
author | Denys Vlasenko | 2010-02-21 05:17:41 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-02-21 05:17:41 +0100 |
commit | 153fcaa6c17124ebbf0d50df5da95f3564c7402b (patch) | |
tree | 1bf422645d2285d06df43de299564937ed78254e /shell | |
parent | 7426920461738367205e3d08649c827c747bd93d (diff) | |
download | busybox-153fcaa6c17124ebbf0d50df5da95f3564c7402b.zip busybox-153fcaa6c17124ebbf0d50df5da95f3564c7402b.tar.gz |
Replace __uClinux__ define with !BB_MMU
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 7f14bed..03904bb 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -73,7 +73,7 @@ # define PIPE_BUF 4096 /* amount of buffering in a pipe */ #endif -#if defined(__uClinux__) +#if !BB_MMU # error "Do not even bother, ash will not run on NOMMU machine" #endif |