diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-04-02 16:09:15 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-04-02 16:09:15 +0000 |
commit | 6cd84c68386d614b4838346b8b16f0431bd07e3e (patch) | |
tree | 658bde36cb97d078f983ececc1bba6953fb84eeb /scripts | |
parent | 423af6adca85911671066465f68402da4f933622 (diff) | |
download | upstream-6cd84c68386d614b4838346b8b16f0431bd07e3e.tar.gz upstream-6cd84c68386d614b4838346b8b16f0431bd07e3e.tar.bz2 upstream-6cd84c68386d614b4838346b8b16f0431bd07e3e.zip |
Use find -exec instead of xargs
SVN-Revision: 6837
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/feeds.sh | 2 |
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() { |