joes 2003/08/23 12:08:31
Modified: . Changes
c Makefile.PL
Log:
Schwern's Play-it-safe fix for EU::MM bug in c/Makefile.PL
Revision Changes Path
1.59 +11 -1 httpd-apreq/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/httpd-apreq/Changes,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- Changes 23 Aug 2003 18:48:19 -0000 1.58
+++ Changes 23 Aug 2003 19:08:31 -0000 1.59
@@ -2,10 +2,20 @@
=over 4
+=item 1.25 - August 23, 2003
+
+Michael G. Schwern's "play it safe" patch to c/Makefile.PL
+(applied patch submitted by Steve Hay). See
+
+ http://marc.theaimsgroup.com/?l=perl5-porters&m=105981649201380&w=2
+ http://marc.theaimsgroup.com/?l=apreq-dev&m=106146287323705&w=2
+
+for details. [joes]
+
=item 1.24 - August 23, 2003
Applied Steve Hay's Request.pm doc patch explaining the tempnam()
-dependence for C<Apache::Request::new()>'s TEMP_DIR option.
+dependence for C<Apache::Request::new()>'s TEMP_DIR option. [joes]
=item 1.23 - July 10, 2003
1.8 +2 -1 httpd-apreq/c/Makefile.PL
Index: Makefile.PL
===================================================================
RCS file: /home/cvs/httpd-apreq/c/Makefile.PL,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- Makefile.PL 3 Apr 2001 19:24:12 -0000 1.7
+++ Makefile.PL 23 Aug 2003 19:08:31 -0000 1.8
@@ -34,7 +34,8 @@
sub MY::dynamic {
my $self = shift;
my $string = $self->MM::dynamic;
- $string =~ s/(Makefile\s+).*/$1/g;
+ $string =~ s{ \$\(INST_DYNAMIC\)}{}g;
+ $string =~ s{ \$\(INST_BOOT\)}{}g;
$string;
}