summaryrefslogtreecommitdiff
path: root/toolchain/gcc
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-09-11 11:29:01 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-09-11 11:29:01 +0200
commitcc25a98b2c59070ab70ffdda4780cd238e665f5d (patch)
tree4de238846dcefd651323e8e76783a87ba46810f3 /toolchain/gcc
parent8e74f954ca7991808417952399524a5f8bd89b7f (diff)
avoid exit when rm fails
Diffstat (limited to 'toolchain/gcc')
-rw-r--r--toolchain/gcc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile
index baf60775f..210c0f68a 100644
--- a/toolchain/gcc/Makefile
+++ b/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); \