projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
e08c66c
)
Remove the / from the end of the extension directory. Change the quantifiers on
Nicholas Clark [Wed, 4 Feb 2009 19:52:00 +0000 (19:52 +0000)]
the regexp from * to +.
make_ext.pl
patch
|
blob
|
blame
|
history
diff --git
a/make_ext.pl
b/make_ext.pl
index
97bc08d
..
c5a9159
100644
(file)
--- a/
make_ext.pl
+++ b/
make_ext.pl
@@
-79,7
+79,7
@@
foreach (@extspec) {
if (/^lib/) {
# Remove lib/auto prefix and /*.* suffix
s{^lib/auto/}{};
- s{[^/]*\.[^/]*$}{};
+ s{/[^/]+\.[^/]+$}{};
} elsif (/^ext/) {
# Remove ext/ prefix and /pm_to_blib suffix
s{^ext/}{};