summaryrefslogtreecommitdiffstats
path: root/sys/boot
diff options
context:
space:
mode:
authorn_hibma <n_hibma@FreeBSD.org>1998-12-16 09:09:09 +0000
committern_hibma <n_hibma@FreeBSD.org>1998-12-16 09:09:09 +0000
commit0dfe97f554b9685389c9e58615db7e9453368503 (patch)
tree7070592035102195858d04bdb8aba1a634de02d4 /sys/boot
parentb811a3806f179839235ab91554fd7c30ddb75d1c (diff)
downloadFreeBSD-src-0dfe97f554b9685389c9e58615db7e9453368503.zip
FreeBSD-src-0dfe97f554b9685389c9e58615db7e9453368503.tar.gz
Removed dynamic loading of FileHandle
Diffstat (limited to 'sys/boot')
-rw-r--r--sys/boot/common/merge_help.pl6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/boot/common/merge_help.pl b/sys/boot/common/merge_help.pl
index 3954854..cfeb6ca 100644
--- a/sys/boot/common/merge_help.pl
+++ b/sys/boot/common/merge_help.pl
@@ -42,8 +42,6 @@
# a subtopic is a topic that will connected under the subtree of
# topic.
-use FileHandle;
-
# Declaration of constants
#
$SOD = 'D'; # Start of description character
@@ -75,12 +73,12 @@ foreach $filename ( @files ) {
$file = STDIN;
} else {
die "Could not open file $filename, $!"
- unless $file = new FileHandle $filename;
+ unless open FILE, $filename;
}
# Process one file and add it to the hash
#
- &add_file($file);
+ &add_file(FILE);
}
# Print the results of our processing
OpenPOWER on IntegriCloud