summaryrefslogtreecommitdiff
path: root/depgen.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 /depgen.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 'depgen.pl')
-rwxr-xr-xdepgen.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/depgen.pl b/depgen.pl
index e357ad82..335c93c2 100755
--- a/depgen.pl
+++ b/depgen.pl
@@ -18,7 +18,7 @@ use FindBin;
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);
@@ -31,5 +31,5 @@ require Driver;
# Main Section
# ************************************************************
-my($driver) = new Driver();
+my $driver = new Driver();
exit($driver->run(\@ARGV));