diff options
| author | Andrew Morton <akpm@osdl.org> | 2004-04-01 06:33:18 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-04-01 06:33:18 -0800 |
| commit | 9be7dd12633056b6ded4383f9b801f141e2df7fc (patch) | |
| tree | 2cfff08c6f28b3d22397534c7ebbb16cc83ae611 | |
| parent | 647068866efb4e28156dc32eebc56d9ea1068efc (diff) | |
[PATCH] kbuild: $LANG fix
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.
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -110,8 +110,8 @@ ifeq ($(skip-makefile),) # 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 |
