Changeset 4185

Show
Ignore:
Timestamp:
05/31/05 05:33:49 (4 years ago)
Author:
Darren_Duncan
svk:copy_cache_prev:
5706
Message:

updated inc/Module/Install/Makefile.pm so that generated Makefiles do not ignore t/*.t scripts having uppercased chars in file names -- if you want your scripts to be ignored during 'make test', place them in a different dir than t/, such as tX/

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • inc/Module/Install/Makefile.pm

    r492 r4185  
    126126    $makefile =~ s/^(PERL = .*)/$1 -Iinc/m; 
    127127 
     128    $makefile =~ s|\@ARGV = grep !/\[A-Z\]/, map glob, \@ARGV;|\@ARGV = map glob, \@ARGV;|; 
     129 
    128130    open MAKEFILE, '> Makefile' or die $!; 
    129131    print MAKEFILE "$preamble$makefile$postamble";