diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-06-23 10:47:59 +0000 |
---|---|---|
committer | Charles Bailey <bailey@genetics.upenn.edu> | 1996-06-23 10:47:59 +0000 |
commit | 1adb159c9e6f4ac956dc944251da05cb1fe521ec (patch) | |
tree | fdede9e3f102c1405d64c7e9331c02267422e358 /ext/POSIX/Makefile.PL | |
parent | 91c9f48204313f48283803346d8dfde2a6b56717 (diff) | |
download | perl-1adb159c9e6f4ac956dc944251da05cb1fe521ec.tar.gz |
Add NAME attribute to suppress MakeMaker "guess" warning
Diffstat (limited to 'ext/POSIX/Makefile.PL')
-rw-r--r-- | ext/POSIX/Makefile.PL | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/POSIX/Makefile.PL b/ext/POSIX/Makefile.PL index 68bce135f8..3359d1742c 100644 --- a/ext/POSIX/Makefile.PL +++ b/ext/POSIX/Makefile.PL @@ -1,6 +1,7 @@ use ExtUtils::MakeMaker; WriteMakefile( - LIBS => ["-lm -lposix -lcposix"], + NAME => 'POSIX', + LIBS => ["-lm -lposix -lcposix"], MAN3PODS => ' ', # Pods will be built by installman. XSPROTOARG => '-noprototypes', # XXX remove later? VERSION_FROM => 'POSIX.pm', |