summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog3
-rw-r--r--t/basewiki_brokenlinks.t2
2 files changed, 3 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index bfa8cdf40..448a43a7b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -15,8 +15,9 @@ ikiwiki (2.2) UNRELEASED; urgency=low
the same way, this prevents complications in dealing with two pages
creating the same file. The move will be handled transparently, though you
might want to rebuild your wiki to make it occur in one step.
+ * Fix FTBFS in test suite introduced in last version. Closes: #425891
- -- Joey Hess <joeyh@debian.org> Thu, 24 May 2007 15:31:03 -0400
+ -- Joey Hess <joeyh@debian.org> Thu, 24 May 2007 16:09:59 -0400
ikiwiki (2.1) unstable; urgency=low
diff --git a/t/basewiki_brokenlinks.t b/t/basewiki_brokenlinks.t
index d15924036..f70394b85 100644
--- a/t/basewiki_brokenlinks.t
+++ b/t/basewiki_brokenlinks.t
@@ -4,6 +4,6 @@ use strict;
use Test::More tests => 3;
ok(! system("make ikiwiki.out"));
-ok(! system("./ikiwiki.out -plugin brokenlinks -rebuild -underlaydir=basewiki t/basewiki_brokenlinks t/basewiki_brokenlinks/out"));
+ok(! system("PERL5LIB=. ./ikiwiki.out -plugin brokenlinks -rebuild -underlaydir=basewiki t/basewiki_brokenlinks t/basewiki_brokenlinks/out"));
ok(`grep 'no broken links' t/basewiki_brokenlinks/out/index.html`);
system("rm -rf t/basewiki_brokenlinks/out t/basewiki_brokenlinks/.ikiwiki");