aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dsplink
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2009-01-03 15:42:30 +0100
committerKoen Kooi <koen@openembedded.org>2009-01-03 15:42:30 +0100
commit3ae90a04c6b7ab7eab3bbf725b4180e5d7ff791a (patch)
tree0fbada010df63686040ab32446dd9c0e778411d4 /packages/dsplink
parentd20f68fa432cbb1d11139da66493f2cfca86efc3 (diff)
downloadopenembedded-3ae90a04c6b7ab7eab3bbf725b4180e5d7ff791a.tar.gz
dsplink: change find | xargs to find -exec
Diffstat (limited to 'packages/dsplink')
-rw-r--r--packages/dsplink/dsplink.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/dsplink/dsplink.inc b/packages/dsplink/dsplink.inc
index 48cf50bb6b..4d5db6adb5 100644
--- a/packages/dsplink/dsplink.inc
+++ b/packages/dsplink/dsplink.inc
@@ -13,8 +13,8 @@ require ti-paths.inc
do_configure () {
# Clean up stale binaries
- find ${S} -name "*.ko" | xargs rm || true
- find ${S} -name "*.o" | xargs rm || true
+ find ${S} -name "*.ko" -exec rm {} \; || true
+ find ${S} -name "*.o" -exec rm {} \; || true
# Run perl script to create appropriate makefiles (v1.60 and up)
(