summaryrefslogtreecommitdiff
path: root/ext/IPC
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-07-12 16:00:51 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-07-12 16:00:51 +0000
commit56acea6ff1302cdf8b9d387cd3766c26e5146dca (patch)
tree16b269fb9de3b66c4ca09597c8da71aac6ed150b /ext/IPC
parent582cc87923e67e144f843c66a3017f5dc873b8de (diff)
downloadperl-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.PL4
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' },
);