summaryrefslogtreecommitdiff
path: root/create_base.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 /create_base.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 'create_base.pl')
-rwxr-xr-xcreate_base.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/create_base.pl b/create_base.pl
index d26022c1..33774c7b 100755
--- a/create_base.pl
+++ b/create_base.pl
@@ -19,7 +19,7 @@ use FileHandle;
use File::Spec;
use File::Basename;
-my($basePath) = $FindBin::Bin;
+my $basePath = $FindBin::Bin;
if ($^O eq 'VMS') {
$basePath = File::Spec->rel2abs(dirname($0)) if ($basePath eq '');
$basePath = VMS::Filespec::unixify($basePath);
@@ -32,7 +32,7 @@ require Creator;
# Data Section
# ******************************************************************
-my($version) = '0.1';
+my $version = '0.1';
# ******************************************************************
# Subroutine Section
@@ -40,7 +40,7 @@ my($version) = '0.1';
sub gather_info {
my $name = shift;
- my $fh = new FileHandle();
+ my $fh = new FileHandle();
if (open($fh, $name)) {
my @lines = ();