summaryrefslogtreecommitdiff
path: root/bin/DependencyGenerator/DependencyEditor.pm
diff options
context:
space:
mode:
Diffstat (limited to 'bin/DependencyGenerator/DependencyEditor.pm')
-rw-r--r--bin/DependencyGenerator/DependencyEditor.pm6
1 files changed, 2 insertions, 4 deletions
diff --git a/bin/DependencyGenerator/DependencyEditor.pm b/bin/DependencyGenerator/DependencyEditor.pm
index 1e884360d9e..8ee36bdd11b 100644
--- a/bin/DependencyGenerator/DependencyEditor.pm
+++ b/bin/DependencyGenerator/DependencyEditor.pm
@@ -15,7 +15,6 @@ use FileHandle;
use File::Basename;
use DependencyGenerator;
-use ObjectGeneratorFactory;
# ************************************************************
# Subroutine Section
@@ -60,15 +59,14 @@ sub process {
}
}
- print $fh "# DO NOT DELETE THIS LINE -- " . basename($0) . " uses it.\n" .
+ print $fh "# DO NOT DELETE THIS LINE -- ", basename($0), " uses it.\n",
"# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.\n\n";
my($dep) = new DependencyGenerator($macros, $ipaths, $replace,
$type, $noinline, $exclude);
- my($objgen) = ObjectGeneratorFactory::create($type);
## Sort the files so the dependencies are reproducible
foreach my $file (sort @$files) {
- print $fh $dep->process($file, $objgen->process($file)) . "\n";
+ print $fh $dep->process($file), "\n";
}
print $fh "# IF YOU PUT ANYTHING HERE IT WILL GO AWAY\n";