From: Sam Ravnborg <sam@ravnborg.org>
Fix this:
Building modules, stage 2.
MODPOST
LANG := en_US.UTF-8
make: LANG: Command not found
make: *** [all] Error 127
by removing the tab in front of the LANG assignment.
# Make sure we're not wasting cpu-cycles doing locale handling, yet do make
# sure error messages appear in the user-desired language
ifdef LC_ALL
- LANG := $(LC_ALL)
- LC_ALL :=
+LANG := $(LC_ALL)
+LC_ALL :=
endif
LC_COLLATE := C
LC_CTYPE := C