diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-10-07 22:19:14 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-10-07 22:19:14 +0000 |
commit | 1265cd6affd557ef5ab11d758494d29b802d8d5d (patch) | |
tree | 406a5b4eb643e461bbdae082b0c5e686ab711334 /make-manuf | |
parent | fb8a4e877ceaf589c3baddb47d81947343b35b5c (diff) | |
download | wireshark-1265cd6affd557ef5ab11d758494d29b802d8d5d.tar.gz wireshark-1265cd6affd557ef5ab11d758494d29b802d8d5d.tar.bz2 wireshark-1265cd6affd557ef5ab11d758494d29b802d8d5d.zip |
From Joerg Mayer: explain in the "LWP isn't installed" message where you
can get LWP.
svn path=/trunk/; revision=4007
Diffstat (limited to 'make-manuf')
-rwxr-xr-x | make-manuf | 6 |
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"; |