summaryrefslogtreecommitdiff
path: root/combine_dsw.pl
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2008-06-17 17:15:26 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2008-06-17 17:15:26 +0000
commit1cde0c244a5bbe5a88390b327f5da3eae47909bb (patch)
tree311b150f6dfa06c7f34ece13f68435ea93105ff7 /combine_dsw.pl
parent821e676d9ff0c53f73f99ed68bd0113bd3c62add (diff)
downloadMPC-1cde0c244a5bbe5a88390b327f5da3eae47909bb.tar.gz
ChangeLogTag: Tue Jun 17 17:16:07 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'combine_dsw.pl')
-rwxr-xr-xcombine_dsw.pl26
1 files changed, 13 insertions, 13 deletions
diff --git a/combine_dsw.pl b/combine_dsw.pl
index 43a2dc67..70308b3e 100755
--- a/combine_dsw.pl
+++ b/combine_dsw.pl
@@ -21,14 +21,14 @@ use File::Basename;
# Data Section
# ******************************************************************
-my($version) = '1.3';
+my $version = '1.3';
# ******************************************************************
# Subroutine Section
# ******************************************************************
sub usageAndExit {
- my($str) = shift;
+ my $str = shift;
if (defined $str) {
print STDERR "$str\n";
}
@@ -52,12 +52,12 @@ sub usageAndExit {
# Main Section
# ******************************************************************
-my($output) = undef;
-my($unlink) = undef;
-my(@input) = ();
+my $output;
+my $unlink;
+my @input;
for(my $i = 0; $i <= $#ARGV; $i++) {
- my($arg) = $ARGV[$i];
+ my $arg = $ARGV[$i];
if ($arg =~ /^-/) {
if ($arg eq '-u') {
$unlink = 1;
@@ -80,18 +80,18 @@ if (!defined $output || !defined $input[0]) {
usageAndExit();
}
-my($tmp) = "$output.tmp";
-my($oh) = new FileHandle();
+my $tmp = "$output.tmp";
+my $oh = new FileHandle();
if (open($oh, ">$tmp")) {
- my($msident) = 0;
+ my $msident = 0;
for(my $i = 0; $i <= $#input; ++$i) {
- my($input) = $input[$i];
- my($fh) = new FileHandle();
- my($global) = ($i == $#input);
+ my $input = $input[$i];
+ my $fh = new FileHandle();
+ my $global = ($i == $#input);
if (open($fh, $input)) {
- my($in_global) = 0;
+ my $in_global = 0;
while(<$fh>) {
if (/Microsoft\s+(Developer\s+Studio|eMbedded\s+Visual)/) {
if ($msident == 0) {