summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/brp-remove-la-files4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/brp-remove-la-files b/scripts/brp-remove-la-files
index 56fa25adf..58c513bf8 100755
--- a/scripts/brp-remove-la-files
+++ b/scripts/brp-remove-la-files
@@ -6,5 +6,5 @@ if [ -z "$RPM_BUILD_ROOT" ] || [ "$RPM_BUILD_ROOT" = "/" ]; then
fi
find "$RPM_BUILD_ROOT" -type f -name '*.la' 2>/dev/null -print0 |
- xargs --null grep --fixed-strings '.la - a libtool library file' --files-with-matches --null |
- xargs --null rm --force
+ xargs -0 grep --fixed-strings '.la - a libtool library file' --files-with-matches --null |
+ xargs -0 rm --force