aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-04-01 06:33:18 -0800
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-04-01 06:33:18 -0800
commit9be7dd12633056b6ded4383f9b801f141e2df7fc (patch)
tree2cfff08c6f28b3d22397534c7ebbb16cc83ae611 /Makefile
parent647068866efb4e28156dc32eebc56d9ea1068efc (diff)
downloadhistory-9be7dd12633056b6ded4383f9b801f141e2df7fc.tar.gz
[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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f1fa0a2629323..b7445e85915d9 100644
--- a/Makefile
+++ b/Makefile
@@ -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