From 1352a36fbe768904cc76c44c81a8522a15782548 Mon Sep 17 00:00:00 2001 From: "greg@kroah.com" Date: Fri, 16 Apr 2004 19:34:01 -0700 Subject: [PATCH] [PATCH] Fix build process for users who have LC_ALL set to a non-english language. Many thanks to jack_mort for helping track this down. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 85620779a..dd7de95dc 100644 --- a/Makefile +++ b/Makefile @@ -92,7 +92,7 @@ ARCH := ${shell $(CC) -dumpmachine | sed -e s'/-.*//' -e 's/i.86/i386/' -e 's/sp -e 's/arm.*/arm/g' -e 's/m68k.*/m68k/' -e 's/powerpc/ppc/g'} # code taken from uClibc to determine the gcc include dir -GCCINCDIR := ${shell $(CC) -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp"} +GCCINCDIR := ${shell LC_ALL=C $(CC) -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp"} # code taken from uClibc to determine the libgcc.a filename GCC_LIB := $(shell $(CC) -print-libgcc-file-name ) -- 2.30.2