This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
metaconfig.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc84095
)
Links contained one slash too many
author
H.Merijn Brand
<h.m.brand@xs4all.nl>
Tue, 11 Apr 2006 15:30:55 +0000
(15:30 +0000)
committer
H.Merijn Brand
<h.m.brand@xs4all.nl>
Tue, 11 Apr 2006 15:30:55 +0000
(15:30 +0000)
p4raw-id: //depot/metaconfig@27765
U/ln-all.pl
patch
|
blob
|
blame
|
history
diff --git
a/U/ln-all.pl
b/U/ln-all.pl
index
bf3ff96
..
b94967b
100755
(executable)
--- a/
U/ln-all.pl
+++ b/
U/ln-all.pl
@@
-31,7
+31,8
@@
while (<>) {
s{^\s+$perl/U}{} or next;
chomp;
(my $f = $_) =~ s{.*/}{};
- symlink "../$_", $f;
+ (my $l = "../$_") =~ s{//+}{/}g;
+ symlink $l, $f;
}
for (qw( Configure config_h.SH )) {