summaryrefslogtreecommitdiff
path: root/vs_postclean.pl
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2008-07-11 15:38:05 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2008-07-11 15:38:05 +0000
commitff2f973fa9af733f65ee53aa52edb2488528360b (patch)
tree353bf186724663ae48fb764d758719ce2ec501d1 /vs_postclean.pl
parent4fe2cd2581553250be14ca3da80ddf046feb78a9 (diff)
downloadMPC-ff2f973fa9af733f65ee53aa52edb2488528360b.tar.gz
ChangeLogTag: Fri Jul 11 15:18:27 UTC 2008 Adam Mitz <mitza@ociweb.com>
Diffstat (limited to 'vs_postclean.pl')
-rwxr-xr-xvs_postclean.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/vs_postclean.pl b/vs_postclean.pl
index 01d7a111..30e0de3e 100755
--- a/vs_postclean.pl
+++ b/vs_postclean.pl
@@ -61,6 +61,7 @@ sub read_proj {
close($fh);
}
+ ## Convert frequently used XML sequences to plain characters.
$cmd =~ s/&amp;/&/g;
$cmd =~ s/&quot;/\'/g;
$cmd =~ s/&gt;/>/g;
@@ -122,7 +123,8 @@ if ($ARGV[0] =~ /^CFG=(.+)/) {
foreach my $file (@ARGV) {
if (substr($file, -4, 4) eq '.sln') {
clean_sln($cfg, $file);
- } else {
+ }
+ else {
clean_proj($cfg, $file);
}
}