aboutsummaryrefslogtreecommitdiff
path: root/skel
diff options
context:
space:
mode:
authorJonathan Worthington <jnthn@jnthn.net>2010-07-28 13:13:23 +0200
committerJonathan Worthington <jnthn@jnthn.net>2010-07-28 13:13:23 +0200
commitae9ed8459263b48b8c6aa82e08c19346ff73fa9f (patch)
treef79eff374acb43c2c947c12250c09b25b74436c5 /skel
parentf22dd98906ab08d7affef27bda899d82366098aa (diff)
Fix the module installation scriopt for Win32. Works for me now.
Diffstat (limited to 'skel')
-rw-r--r--skel/build/module-install.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/skel/build/module-install.pl b/skel/build/module-install.pl
index cba32df..92c821b 100644
--- a/skel/build/module-install.pl
+++ b/skel/build/module-install.pl
@@ -21,7 +21,7 @@ while (@ARGV) {
return unless /\.pm6?/;
my $source = $File::Find::name;
my $target = $source;
- $target =~ s/$mlib/$perl6lib/;
+ $target =~ s/\Q$mlib\E/$perl6lib/;
print "$source => $target\n";
mkpath dirname($target);
copy($source, $target) or die "copy failed: $!\n";