diff options
author | Waldemar Brodkorb <wbrodkorb@conet.de> | 2015-01-30 14:31:49 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbrodkorb@conet.de> | 2015-01-30 14:31:49 +0100 |
commit | aef047bf7d61880ed478e6410205ad2f7ff6067c (patch) | |
tree | ffbbe27d7471acfff0668875920a08cb47f5b58e /toolchain/uclibc/Makefile | |
parent | bdee5e4fe08cc59d6bd31f78a6663e98c8449b19 (diff) |
fix find command, reported by phil
Diffstat (limited to 'toolchain/uclibc/Makefile')
-rw-r--r-- | toolchain/uclibc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/uclibc/Makefile b/toolchain/uclibc/Makefile index 4d3ab1ca3..ff227dc88 100644 --- a/toolchain/uclibc/Makefile +++ b/toolchain/uclibc/Makefile @@ -166,7 +166,7 @@ ifeq ($(ADK_UCLIBC_TEST),y) endif ifeq ($(ADK_TARGET_TOOLCHAIN),y) # cleanup toolchain - -find $(STAGING_TARGET_DIR) $(STAGING_HOST_DIR) -name \*.la -exec {} \; + -find $(STAGING_TARGET_DIR) $(STAGING_HOST_DIR) -name \*.la -exec rm {} \; # strip target libs and host tools for toolchain builds PATH="$(TARGET_PATH)" debug='0' prefix='${TARGET_CROSS}' ${BASH} ${SCRIPT_DIR}/rstrip.sh \ $(STAGING_TARGET_DIR) $(TOOLCHAIN_DIR)/usr/lib/gcc/$(GNU_TARGET_NAME) |