]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] kbuild: $LANG fix
authorAndrew Morton <akpm@osdl.org>
Thu, 1 Apr 2004 14:33:18 +0000 (06:33 -0800)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Thu, 1 Apr 2004 14:33:18 +0000 (06:33 -0800)
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.

Makefile

index f1fa0a262932386de8bab1b4fca9c883223edf56..b7445e85915d9decdb7c9efd762c63f0f8fbac84 100644 (file)
--- 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