diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-09-17 10:39:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-09-17 10:39:08 +0000 |
commit | 5e16460b41558637332877d5c69596760fb02832 (patch) | |
tree | dcf5d01551a4d0e62010425a5272eef791a29277 /extra | |
parent | 6cb7aee6efc6f9b439f5216e8178829fe79904c5 (diff) |
Patch from Philip Nye fixing mmu-less
Diffstat (limited to 'extra')
-rwxr-xr-x | extra/scripts/fix_includes.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/scripts/fix_includes.sh b/extra/scripts/fix_includes.sh index 6e8c00c40..fa7cc28c5 100755 --- a/extra/scripts/fix_includes.sh +++ b/extra/scripts/fix_includes.sh @@ -53,7 +53,7 @@ while [ -n "$1" ]; do case $1 in -k ) shift; if [ -n "$1" ]; then KERNEL_SOURCE=$1; shift; else usage; fi; ;; -t ) shift; if [ -n "$1" ]; then TARGET_ARCH=$1; shift; else usage; fi; ;; - -n ) shift; if [ -n "$1" ]; then HAS_MMU="n"; shift; else usage; fi; ;; + -n ) shift; HAS_MMU="n"; ;; -* ) usage; ;; * ) usage; ;; esac; |