diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-15 02:46:08 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-15 02:46:08 +0000 |
commit | 69158f75613eae787b94b6b4c3c353cf740e0e09 (patch) | |
tree | 0d3520ecb38ae0aa476b8072f9abc9f384bc58a9 /ext/re | |
parent | 33b8ce059bff80913058d8738ead1314953634ba (diff) | |
download | perl-69158f75613eae787b94b6b4c3c353cf740e0e09.tar.gz |
correct bugs exposed in MM_Unix.pm by commenting out Selfloader
(MAN3PODS cannot be set to ' '; stray stricture violation)
p4raw-id: //depot/perl@1967
Diffstat (limited to 'ext/re')
-rw-r--r-- | ext/re/Makefile.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/re/Makefile.PL b/ext/re/Makefile.PL index 9ed83d17c8..040b085f4f 100644 --- a/ext/re/Makefile.PL +++ b/ext/re/Makefile.PL @@ -2,7 +2,7 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 're', VERSION_FROM => 're.pm', - MAN3PODS => ' ', # Pods will be built by installman. + MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', OBJECT => 're_exec$(OBJ_EXT) re_comp$(OBJ_EXT) re$(OBJ_EXT)', DEFINE => '-DPERL_EXT_RE_BUILD', |