From: Nicholas Clark Date: Mon, 18 Jun 2001 23:29:23 +0000 (+0100) Subject: Re: [PATCH] Re: [PATCH] Re: perl@10611 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=21071c796cea8a77ac4a8e55245edbb3cf3a6f20;p=p5sagit%2Fp5-mst-13.2.git Re: [PATCH] Re: [PATCH] Re: perl@10611 Message-ID: <20010618232923.I98663@plum.flirble.org> p4raw-id: //depot/perl@10697 --- diff --git a/ext/POSIX/Makefile.PL b/ext/POSIX/Makefile.PL index 0d14224..fa705f0 100644 --- a/ext/POSIX/Makefile.PL +++ b/ext/POSIX/Makefile.PL @@ -11,6 +11,7 @@ WriteMakefile( MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', # XXX remove later? VERSION_FROM => 'POSIX.pm', + realclean => {FILES=> 'constants.c constants.xs'}, ); my @names = diff --git a/ext/Socket/Makefile.PL b/ext/Socket/Makefile.PL index 3c13ad9..3a7bc57 100644 --- a/ext/Socket/Makefile.PL +++ b/ext/Socket/Makefile.PL @@ -7,6 +7,7 @@ WriteMakefile( ($Config{libs} =~ /(-lsocks\S*)/ ? (LIBS => [ "$1" ] ) : ()), MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', # XXX remove later? + realclean => {FILES=> 'constants.c constants.xs'}, ); my @names = (qw(AF_802 AF_APPLETALK AF_CCITT AF_CHAOS AF_DATAKIT AF_DECnet AF_DLI AF_ECMA AF_GOSIP AF_HYLINK AF_IMPLINK AF_INET AF_LAT diff --git a/ext/Sys/Syslog/Makefile.PL b/ext/Sys/Syslog/Makefile.PL index 5824dfb..c79abe7 100644 --- a/ext/Sys/Syslog/Makefile.PL +++ b/ext/Sys/Syslog/Makefile.PL @@ -6,6 +6,7 @@ WriteMakefile( VERSION_FROM => 'Syslog.pm', MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', + realclean => {FILES=> 'constants.c constants.xs'}, ); WriteConstants( NAME => 'GDBM_File',