diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-06 12:33:51 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-06 12:33:51 +0100 |
commit | 07f56ae74b26588e501c7e895f3355d4177e81d8 (patch) | |
tree | add188b35e9542522c5343bbad9617336a6c15be /toolchain | |
parent | 7f853c20b539d4b71e6d0ef53fcc16d7b9c00976 (diff) |
fix parallel using of different mips abi
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/uClibc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolchain/uClibc/Makefile b/toolchain/uClibc/Makefile index b935a2f53..121b9d33a 100644 --- a/toolchain/uClibc/Makefile +++ b/toolchain/uClibc/Makefile @@ -36,17 +36,17 @@ else $(SED) 's/.*\(CONFIG_MIPS_ISA_MIPS32\).*/\1=y/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_MIPS_ISA_MIPS64\).*/# \1 is not set/' ${WRKBUILD}/.config endif -ifeq ($(ADK_TARGET_ABI_N64),y) +ifeq ($(ADK_n64),y) $(SED) 's/.*\(CONFIG_MIPS_N64_ABI\).*/\1=y/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_MIPS_O32_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_MIPS_N32_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config endif -ifeq ($(ADK_TARGET_ABI_N32),y) +ifeq ($(ADK_n32),y) $(SED) 's/.*\(CONFIG_MIPS_N32_ABI\).*/\1=y/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_MIPS_O32_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_MIPS_N64_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config endif -ifeq ($(ADK_TARGET_ABI_O32),y) +ifeq ($(ADK_o32),y) $(SED) 's/.*\(CONFIG_MIPS_O32_ABI\).*/\1=y/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_MIPS_N32_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_MIPS_N64_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config |