diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-07-25 12:53:24 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-07-25 12:53:24 +0200 |
commit | 64c85a1df2b7d5ec376795f589ba45a876142b20 (patch) | |
tree | ecd2b6909e59e789da335e3363ae2c25cd8bd789 | |
parent | 8ff51ed015d71036dcc533af859b261046b39772 (diff) |
use a more portable way of find doing it.
-rw-r--r-- | mk/host-bottom.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/host-bottom.mk b/mk/host-bottom.mk index 081e4d8b9..0a3add597 100644 --- a/mk/host-bottom.mk +++ b/mk/host-bottom.mk @@ -96,7 +96,7 @@ ifeq (${HOST_STYLE},manual) env ${HOST_MAKE_ENV} ${MAKE} host-install $(MAKE_TRACE) endif env ${HOST_MAKE_ENV} ${MAKE} hostpost-install $(MAKE_TRACE) - @find $(STAGING_HOST_DIR) -name \*.la -delete + @find $(STAGING_HOST_DIR) -name \*.la -exec rm {} \; @touch $@ ${_HOST_COOKIE}: |