Auto-complete lexicals in the debugger shell
[p5sagit/p5-mst-13.2.git] / ext / Errno / Makefile.PL
index 527f700..cc45afb 100644 (file)
@@ -1,8 +1,6 @@
 use ExtUtils::MakeMaker;
 use Config;
 
-@VMS = ($^O eq 'VMS') ? (MAN3PODS => {}) : ();
-
 my $arch = "$Config{'archname'}-$Config{'osvers'}";
 my $got = "";
 if (-e 'arch.txt') {
@@ -24,16 +22,14 @@ if ($got ne $arch) {
 WriteMakefile(
     NAME        => 'Errno',
     VERSION_FROM => 'Errno_pm.PL',
-    MAN3PODS     => {},        # Pods will be built by installman.
     PL_FILES    => {'Errno_pm.PL'=>'Errno.pm'},
     PM          => {'Errno.pm' => '$(INST_LIBDIR)/Errno.pm'},
-    'clean'     => {FILES => 'Errno.pm'},
+    'clean'     => {FILES => 'Errno.pm arch.txt'},
     'dist'      => {
        COMPRESS => 'gzip -9f',
        SUFFIX   => '.gz', 
        DIST_DEFAULT => 'd/Errno.pm tardist',
     },
-    @VMS,
 );
 
 sub MY::postamble {