On Wed, Mar 16, 2005 at 07:27:06PM -0600, Craig A. Berry wrote:
> # timestamp file to avoid repeated invocations under VMS
> pm_to_blib : pm_to_blib.ts
> $(NOECHO) $(NOOP)
>
>
> pm_to_blib : $(TO_INST_PM)
There's the trouble. Try this.
--- lib/ExtUtils/MM_VMS.pm (revision 3949)
+++ lib/ExtUtils/MM_VMS.pm (local)
@@ -306,7 +306,7 @@
my $make = $self->SUPER::pm_to_blib;
- $make =~ s{^pm_to_blib :}{pm_to_blib.ts :};
+ $make =~ s{^pm_to_blib :}{pm_to_blib.ts :}m;
$make =~ s{\$\(TOUCH\) pm_to_blib}{\$(TOUCH) pm_to_blib.ts};
$make = <<'MAKE' . $make;