X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/a7b8d6784eb68e82dfd13a37b0f12e80216065a1..bb85ff4f8d439dc74d6a292caf0b3ca4eb8371d2:/scripts/feeds.sh diff --git a/scripts/feeds.sh b/scripts/feeds.sh index 9fc3343a1..e21c204c2 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 -exec rm -f {} + + find $1 -type l | xargs -r rm -f } setup_symlinks() { @@ -30,7 +30,7 @@ setup_symlinks() { # so that we can make this structure be flat in $PACKAGE_DIR for dir in $(ls $1/) do - ln -s $1/$dir/*/* $2/ + ln -s $1/$dir/* $2/ done }