diff options
author | Raphael Manfredi <Raphael_Manfredi@grenoble.hp.com> | 1997-03-06 14:10:38 +0100 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-03-01 18:40:49 +1200 |
commit | 385588b3949e695a02c8ea1dd00fe789d6044de3 (patch) | |
tree | 3ee9ff5bd5715756399a102b042284ec5e88881b /lib/ExtUtils/Liblist.pm | |
parent | 1db9566f513791929f1e21e86206e5669d5b11c2 (diff) | |
download | perl-385588b3949e695a02c8ea1dd00fe789d6044de3.tar.gz |
HP-UX hint update
Quoting Chip Salzenberg:
:If you have a second, please look them over and see if anything
:important is out or anything broken is in.
I don't see my hint/hpux.sh patch. Here it is again (in unified format
this time):
p5p-msgid: 1479.857653838@lyon.grenoble.hp.com
Diffstat (limited to 'lib/ExtUtils/Liblist.pm')
-rw-r--r-- | lib/ExtUtils/Liblist.pm | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/lib/ExtUtils/Liblist.pm b/lib/ExtUtils/Liblist.pm index 2a43022638..a885653820 100644 --- a/lib/ExtUtils/Liblist.pm +++ b/lib/ExtUtils/Liblist.pm @@ -2,7 +2,7 @@ package ExtUtils::Liblist; use vars qw($VERSION); # Broken out of MakeMaker from version 4.11 -$VERSION = substr q$Revision: 1.2201 $, 10; +$VERSION = substr q$Revision: 1.22 $, 10; use Config; use Cwd 'cwd'; @@ -173,8 +173,7 @@ sub _unix_os2_ext { } last; # found one here so don't bother looking further } - print STDOUT "Note (probably harmless): " - ."No library found for -l$thislib\n" + print STDOUT "Warning (will try anyway): No library found for -l$thislib\n" unless $found_lib>0; } return ('','','','') unless $found; @@ -257,13 +256,11 @@ sub _vms_ext { if ($test =~ /(?:$so|exe)$/i) { $type = 'sh'; } elsif ($test =~ /(?:$lib_ext|olb)$/i) { $type = 'olb'; } elsif ($test =~ /(?:$obj_ext|obj)$/i) { - print STDOUT "Note (probably harmless): " - ."Plain object file $test found in library list\n"; + print STDOUT "Warning (will try anyway): Plain object file $test found in library list\n"; $type = 'obj'; } else { - print STDOUT "Note (probably harmless): " - ."Unknown library type for $test; assuming shared\n"; + print STDOUT "Warning (will try anyway): Unknown library type for $test; assuming shared\n"; $type = 'sh'; } } @@ -281,8 +278,7 @@ sub _vms_ext { elsif (not length($ctype) and # If we've got a lib already, don't bother ( -f ($test = VMS::Filespec::rmsexpand($name,$obj_ext)) or -f ($test = VMS::Filespec::rmsexpand($name,'.obj')))) { - print STDOUT "Note (probably harmless): " - ."Plain object file $test found in library list\n"; + print STDOUT "Warning (will try anyway): Plain object file $test found in library list\n"; $type = 'obj'; $name = $test unless $test =~ /obj;?\d*$/i; } @@ -298,8 +294,7 @@ sub _vms_ext { next LIB; } } - print STDOUT "Note (probably harmless): " - ."No library found for $lib\n"; + print STDOUT "Warning (will try anyway): No library found for $lib\n"; } @libs = sort keys %obj; |