projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7b89fb7
)
Don't install anything beneath 't' directories.
author
Jarkko Hietaniemi
<jhi@iki.fi>
Thu, 28 Mar 2002 01:46:21 +0000
(
01:46
+0000)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Thu, 28 Mar 2002 01:46:21 +0000
(
01:46
+0000)
p4raw-id: //depot/perl@15569
installperl
patch
|
blob
|
history
diff --git
a/installperl
b/installperl
index
f36b4c0
..
3379369
100755
(executable)
--- a/
installperl
+++ b/
installperl
@@
-744,7
+744,8
@@
sub installlib {
# ignore patch backups, RCS files, emacs backup & temp files and the
# .exists files, .PL files, and .t files.
- return if $name =~ m{\.orig$|~$|^#.+#$|,v$|^\.exists|\.PL$|\.t$};
+ return if $name =~ m{\.orig$|~$|^#.+#$|,v$|^\.exists|\.PL$|\.t$} ||
+ $dir =~ m{/t(?:/|$)};
$name = "$dir/$name" if $dir ne '';