diff options
author | John E. Malmberg <wb8tyw@qsl.net> | 2007-09-29 09:50:37 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2007-09-30 13:56:08 +0000 |
commit | 650ef4db8cad860f43b2a55b1e3f824abfedf598 (patch) | |
tree | 6b02c138b62d22592bb62241ee15f3a716fd9c02 /lib/Module | |
parent | 5808899ac07d66fe4ab68c336e611c275c835a51 (diff) | |
download | perl-650ef4db8cad860f43b2a55b1e3f824abfedf598.tar.gz |
Re: [patch@31988] Revised Module::Build fixes for VMS.
From: "John E. Malmberg" <wb8tyw@qsl.net>
Message-id: <46FEAC8D.1080506@qsl.net>
Missed one case in #31995.
p4raw-id: //depot/perl@31998
Diffstat (limited to 'lib/Module')
-rw-r--r-- | lib/Module/Build/Base.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Module/Build/Base.pm b/lib/Module/Build/Base.pm index 3462505753..519fe00fd4 100644 --- a/lib/Module/Build/Base.pm +++ b/lib/Module/Build/Base.pm @@ -2247,7 +2247,7 @@ sub process_support_files { push @{$p->{include_dirs}}, $p->{c_source}; - my $files = $self->rscan_dir($p->{c_source}, qr('\.c(pp)?$')); + my $files = $self->rscan_dir($p->{c_source}, file_qr('\.c(pp)?$')); foreach my $file (@$files) { push @{$p->{objects}}, $self->compile_c($file); } |