From 8944824d1c564229e7bc40ed32a727363306c4c8 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Thu, 6 Jun 2013 00:08:31 +0200 Subject: [PATCH] rm_attrs: Fix for parameters with whitespace --- build/scripts/rm_attrs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/scripts/rm_attrs b/build/scripts/rm_attrs index 1b76bb6bfa..ea4d99f9a8 100755 --- a/build/scripts/rm_attrs +++ b/build/scripts/rm_attrs @@ -9,7 +9,7 @@ rmAttrs=$1 shift if [ -f $rmAttrs ]; then - $rmAttrs $@ + $rmAttrs "$@" else - rm $@ + rm "$@" fi