aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmake-manuf6
1 files changed, 4 insertions, 2 deletions
diff --git a/make-manuf b/make-manuf
index d97147b8e1..26f128cc7b 100755
--- a/make-manuf
+++ b/make-manuf
@@ -1,6 +1,6 @@
#!/usr/bin/perl -w
#
-# $Id: make-manuf,v 1.2 2000/11/29 04:11:48 gram Exp $
+# $Id: make-manuf,v 1.3 2001/10/07 22:19:14 guy Exp $
#
# Make-manuf - Creates a file containing ethernet OUIs and their
# company IDs. It merges the databases at
@@ -13,9 +13,11 @@
# with the listing in "oui.txt", with the entries in "manuf.tmpl" taking
# precedence.
+# LWP is part of the standard Perl module libwww
eval "require LWP::UserAgent;";
if( $@ ) {
- die "LWP isn't installed. Bailing.\n";
+ die "LWP isn't installed. It is part of the standard Perl\n" .
+ " module libwww. Bailing.\n";
}
$template = "manuf.tmpl";