diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-07-12 16:00:51 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-07-12 16:00:51 +0000 |
commit | 56acea6ff1302cdf8b9d387cd3766c26e5146dca (patch) | |
tree | 16b269fb9de3b66c4ca09597c8da71aac6ed150b /ext/IPC | |
parent | 582cc87923e67e144f843c66a3017f5dc873b8de (diff) | |
download | perl-56acea6ff1302cdf8b9d387cd3766c26e5146dca.tar.gz |
don't clobber *.orig files on *clean targets
p4raw-id: //depot/perl@6383
Diffstat (limited to 'ext/IPC')
-rw-r--r-- | ext/IPC/SysV/Makefile.PL | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/IPC/SysV/Makefile.PL b/ext/IPC/SysV/Makefile.PL index 60dd74d9a9..b87f179be2 100644 --- a/ext/IPC/SysV/Makefile.PL +++ b/ext/IPC/SysV/Makefile.PL @@ -13,7 +13,7 @@ sub MY::libscan return '' if($path =~ m:/(RCS|CVS|SCCS)/: || $path =~ m:[~%]$: || - $path =~ m:\.(orig|rej)$: + $path =~ m:(\.(orig|rej)|~)$: ); $path; @@ -31,7 +31,7 @@ WriteMakefile( 'clean' => {FILES => join(" ", map { "$_ */$_ */*/$_" } - qw(*% *.html *.b[ac]k *.old *.orig)) + qw(*% *.html *.b[ac]k *.old)) }, 'macro' => { INSTALLDIRS => 'perl' }, ); |