summaryrefslogtreecommitdiff
path: root/ext/POSIX/Makefile.PL
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters@africa.nicoh.com>1996-06-23 10:47:59 +0000
committerCharles Bailey <bailey@genetics.upenn.edu>1996-06-23 10:47:59 +0000
commit1adb159c9e6f4ac956dc944251da05cb1fe521ec (patch)
treefdede9e3f102c1405d64c7e9331c02267422e358 /ext/POSIX/Makefile.PL
parent91c9f48204313f48283803346d8dfde2a6b56717 (diff)
downloadperl-1adb159c9e6f4ac956dc944251da05cb1fe521ec.tar.gz
Add NAME attribute to suppress MakeMaker "guess" warning
Diffstat (limited to 'ext/POSIX/Makefile.PL')
-rw-r--r--ext/POSIX/Makefile.PL3
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',