summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2007-04-02 16:09:15 +0000
committerFlorian Fainelli <florian@openwrt.org>2007-04-02 16:09:15 +0000
commit6cd84c68386d614b4838346b8b16f0431bd07e3e (patch)
tree658bde36cb97d078f983ececc1bba6953fb84eeb /scripts
parent423af6adca85911671066465f68402da4f933622 (diff)
downloadmaster-31e0f0ae-6cd84c68386d614b4838346b8b16f0431bd07e3e.tar.gz
master-31e0f0ae-6cd84c68386d614b4838346b8b16f0431bd07e3e.tar.bz2
master-31e0f0ae-6cd84c68386d614b4838346b8b16f0431bd07e3e.zip
Use find -exec instead of xargs
SVN-Revision: 6837
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/feeds.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/feeds.sh b/scripts/feeds.sh
index 351c87c43d..d2dfe9da9f 100755
--- a/scripts/feeds.sh
+++ b/scripts/feeds.sh
@@ -22,7 +22,7 @@ cd $TOPDIR
# Some functions we might call several times a run
delete_symlinks() {
- find $1 -type l | xargs rm -f
+ find $1 -type l -exec rm -f {} \;
}
setup_symlinks() {