Browse Source

avoid exit when rm fails

Waldemar Brodkorb 15 years ago
parent
commit
cc25a98b2c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      toolchain/gcc/Makefile

+ 1 - 1
toolchain/gcc/Makefile

@@ -130,7 +130,7 @@ $(WRKBUILD)/.installed: $(WRKBUILD)/.compiled
 	PATH=$(TARGET_PATH) \
 	$(MAKE) -C $(GCC_BUILD_DIR_FINAL) install
 	# workaround if you cross-compile binutils
-	rm $(STAGING_DIR)/lib/libiberty.a
+	@-rm $(STAGING_DIR)/lib/libiberty.a
 	# Set up the symlinks to enable lying about target name.
 	set -e; \
 	(cd $(STAGING_TOOLS); \