Ubuntu's gcc doesn't write "install:" in german locales.
authorPatrick Georgi <patrick@georgi-clan.de>
Tue, 8 Jan 2008 10:28:06 +0000 (10:28 +0000)
committerPatrick Georgi <patrick.georgi@coresystems.de>
Tue, 8 Jan 2008 10:28:06 +0000 (10:28 +0000)
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

src/config/Config.lb

index f56f53aca393e481dbb09b2dc87515a088a519ce..37852e1d15263c6bb30b3896c341519ce1979ccf 100644 (file)
@@ -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