From 88e523aad685e06930e0a7bcbda39b57180b2540 Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Tue, 15 Dec 2015 15:38:59 +0000 Subject: [PATCH] wmakeLnInclude: Use xargs with find --- wmake/wmakeLnInclude | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmake/wmakeLnInclude b/wmake/wmakeLnInclude index b68c31a6e..2287e231d 100755 --- a/wmake/wmakeLnInclude +++ b/wmake/wmakeLnInclude @@ -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 #------------------------------------------------------------------------------