Browse Source

fix sed command line

Waldemar Brodkorb 13 years ago
parent
commit
9ff05397b4
1 changed files with 6 additions and 6 deletions
  1. 6 6
      toolchain/uClibc/Makefile

+ 6 - 6
toolchain/uClibc/Makefile

@@ -44,18 +44,18 @@ $(WRKBUILD)/.headers:
 	    $(TOPDIR)/target/$(ADK_TARGET_ARCH)/$(UCLIBCCFG) >${WRKBUILD}/.config
 ifeq ($(ADK_TARGET_ABI_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
+	$(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)
 	$(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
+	$(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)
 	$(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
+	$(SED)  's/.*\(CONFIG_MIPS_N32_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config
+	$(SED)  's/.*\(CONFIG_MIPS_N64_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config
 endif
 ifneq ($(ADK_DEBUG),)
 	$(SED) 's,DOSTRIP,DODEBUG,' ${WRKBUILD}/.config