summaryrefslogtreecommitdiff
path: root/infrastructure
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2012-11-15 00:00:06 +0000
committerChris Wilson <chris+github@qwirx.com>2012-11-15 00:00:06 +0000
commit2c094f82ae5964b8b448634045576f145c370ca2 (patch)
tree7fce57abf2d177597be3122d10151786bc2c4471 /infrastructure
parent39356eb034b824da6aa83bb144df969115a8a163 (diff)
We need rm -f to remove read-only files from .svn directory copies in testfiles.
Diffstat (limited to 'infrastructure')
-rwxr-xr-xinfrastructure/makeparcels.pl.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/infrastructure/makeparcels.pl.in b/infrastructure/makeparcels.pl.in
index 8d5a0ea3..5afdf730 100755
--- a/infrastructure/makeparcels.pl.in
+++ b/infrastructure/makeparcels.pl.in
@@ -375,8 +375,8 @@ if ($build_os eq 'CYGWIN')
}
else
{
- print MAKE "\tfind release debug -type f -exec rm {} \\;\n";
- print MAKE "\tfind . -name 'autogen_*' -type f -exec rm {} \\;\n";
+ print MAKE "\tfind release debug -type f -exec rm -f {} \\;\n";
+ print MAKE "\tfind . -name 'autogen_*' -type f -exec rm -f {} \\;\n";
}
for my $parcel (@parcels)