diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2007-11-12 17:30:52 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-11-15 23:21:51 +0000 |
commit | 3247989ee864db2cc5dccb14460573fee82b6832 (patch) | |
tree | 2c35f1965acef9e99da6fdd56a5a4692f15ba38f | |
parent | 7c3a622d9c8e88117a8d647756827852dd8c8432 (diff) | |
download | blackbird-op-linux-3247989ee864db2cc5dccb14460573fee82b6832.tar.gz blackbird-op-linux-3247989ee864db2cc5dccb14460573fee82b6832.zip |
[MIPS] Makefile: Fix canonical system names
The GNU `config.guess' uses "linux-gnu" as the canonical system name.
Fix the list of compiler prefixes checked to spell it correctly.
Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 23c17755eca0..a1f8d8b96b03 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile @@ -44,7 +44,7 @@ endif ifneq ($(SUBARCH),$(ARCH)) ifeq ($(CROSS_COMPILE),) - CROSS_COMPILE := $(call cc-cross-prefix, $(tool-archpref)-linux- $(tool-archpref)-gnu-linux- $(tool-archpref)-unknown-gnu-linux-) + CROSS_COMPILE := $(call cc-cross-prefix, $(tool-archpref)-linux- $(tool-archpref)-linux-gnu- $(tool-archpref)-unknown-linux-gnu-) endif endif |