stas 2004/09/24 18:16:49
Modified: perl-framework/Apache-Test Makefile.PL Changes
Log:
make sure that 'make distclean' cleans all the autogenerated files
Revision Changes Path
1.22 +12 -0 httpd-test/perl-framework/Apache-Test/Makefile.PL
Index: Makefile.PL
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/Makefile.PL,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -u -r1.21 -r1.22
--- Makefile.PL 5 Sep 2004 16:30:30 -0000 1.21
+++ Makefile.PL 25 Sep 2004 01:16:49 -0000 1.22
@@ -48,7 +48,19 @@
dist => {
COMPRESS => 'gzip -9f', SUFFIX=>'gz',
},
+ clean => {
+ FILES => "@{ clean_files() }",
+ },
);
+
+sub clean_files {
+ return [
+ qw(lib/Apache/TestConfigData.pm
+ .mypacklist
+ t/TEST
+ ),
+ ];
+}
sub set_version {
$VERSION = $Apache::Test::VERSION;
1.171 +3 -0 httpd-test/perl-framework/Apache-Test/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/Changes,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -u -r1.170 -r1.171
--- Changes 23 Sep 2004 00:34:57 -0000 1.170
+++ Changes 25 Sep 2004 01:16:49 -0000 1.171
@@ -8,6 +8,9 @@
=item 1.14-dev
+make sure that 'make distclean' cleans all the autogenerated files
+[Stas]
+
make sure that if -maxclients option is passed on the command line,
minclients will never be bigger than that value [Stas]