wmakeLnInclude: Use xargs with find

This commit is contained in:
Henry Weller 2015-12-15 15:38:59 +00:00
parent 119708e401
commit 88e523aad6

View file

@ -150,7 +150,7 @@ fi
#------------------------------------------------------------------------------
# Remove any broken links first (this helps when file locations have moved)
#------------------------------------------------------------------------------
find -L . -type l -exec rm {} \;
find -L . -type l | xargs rm
#------------------------------------------------------------------------------