1
0
forked from ports/opt

amarok: make find more efficient by using -delete instead of | xargs

This commit is contained in:
Nick Steeves 2006-03-30 10:56:22 +00:00
parent fdb8c3f427
commit eda1c1dbb4

View File

@ -19,5 +19,5 @@ build() {
make
make prefix=$PKG/usr install
find $PKG/usr/share/{doc/HTML,locale}/* ! -wholename "*HTML/en*" \
! -wholename "*locale/en*" | xargs rm -rf
! -wholename "*locale/en*" -delete
}