summaryrefslogtreecommitdiff
path: root/IkiWiki/Rcs/mercurial.pm
diff options
context:
space:
mode:
Diffstat (limited to 'IkiWiki/Rcs/mercurial.pm')
-rw-r--r--IkiWiki/Rcs/mercurial.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/Rcs/mercurial.pm b/IkiWiki/Rcs/mercurial.pm
index 8a3329395..a892ee975 100644
--- a/IkiWiki/Rcs/mercurial.pm
+++ b/IkiWiki/Rcs/mercurial.pm
@@ -160,7 +160,8 @@ sub rcs_getctime ($) { #{{{
# XXX filename passes through the shell here, should try to avoid
# that just in case
- my @cmdline = ("hg", "-R", $config{srcdir}, "log", "-v", "-l", '1', $file);
+ my @cmdline = ("hg", "-R", $config{srcdir}, "log", "-v", "-l", '1',
+ "$config{srcdir}/$file");
open (my $out, "@cmdline |");
my @log = mercurial_log($out);