summaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2008-01-08 10:28:06 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2008-01-08 10:28:06 +0000
commiteaca2c32a32f5078bfc6b8c8d5d6ad43f0fbf96d (patch)
treefd159fd062116072d4134643582f58f4befedf1a /src/config
parentc7323f1b0c75ccfd271c1fd0133ff12ca5d8ea7a (diff)
downloadcoreboot-eaca2c32a32f5078bfc6b8c8d5d6ad43f0fbf96d.tar.xz
Ubuntu's gcc doesn't write "install:" in german locales.
Normalize used locale to "C" before parsing output. Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3037 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/config')
-rw-r--r--src/config/Config.lb2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/Config.lb b/src/config/Config.lb
index f56f53aca3..37852e1d15 100644
--- a/src/config/Config.lb
+++ b/src/config/Config.lb
@@ -5,7 +5,7 @@ uses CONFIG_AP_CODE_IN_CAR
makedefine CPP:= $(CC) -x assembler-with-cpp -DASSEMBLY -E
makedefine LIBGCC_FILE_NAME := $(shell $(CC) -print-libgcc-file-name)
-makedefine GCC_INC_DIR := $(shell $(CC) -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
+makedefine GCC_INC_DIR := $(shell LC_ALL=C $(CC) -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
makedefine CPPFLAGS := -I$(TOP)/src/include -I$(TOP)/src/arch/$(ARCH)/include -I$(GCC_INC_DIR) $(CPUFLAGS)
makedefine CFLAGS := $(CPU_OPT) $(CPPFLAGS) -Os -nostdinc -nostdlib -fno-builtin -Wall