fix path issue when runnign test
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Wed, 5 Sep 2007 23:51:08 +0000 (23:51 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Wed, 5 Sep 2007 23:51:08 +0000 (23:51 +0000)
Makefile.PL
t/basewiki_brokenlinks.t

index 1add3cf1c17fe538109c480e1ef1491179e8f87b..741f530a26416b694ec7265c4ea6ef305e74a692 100755 (executable)
@@ -82,7 +82,7 @@ extra_install:
        install -d $(DESTDIR)$(PREFIX)/bin
        install ikiwiki.out $(DESTDIR)$(PREFIX)/bin/ikiwiki
 
-       $(MAKE) -C po install PREFIX=$(PREFIX)
+       $(MAKE) -C po install
 }
 }
 
index 00811a5e33e4b6e47ea48dd0135a1deeb21bf05b..baee285e24409fc699edec0609e3243e825d8092 100755 (executable)
@@ -5,7 +5,7 @@ use Test::More 'no_plan';
 
 ok(! system("mkdir t/tmp"));
 ok(! system("make -q ikiwiki.out"));
-ok(! system("make extra_install DESTDIR=t/tmp/install PREFIX=/usr >/dev/null"));
+ok(! system("make extra_install DESTDIR=`pwd`/t/tmp/install PREFIX=/usr >/dev/null"));
 ok(! system("LANG= perl -T -I. ./ikiwiki.out -plugin smiley -plugin brokenlinks -rebuild -underlaydir=t/tmp/install/usr/share/ikiwiki/basewiki -templatedir=templates t/basewiki_brokenlinks t/tmp/out"));
 ok(`grep 'no broken links' t/tmp/out/index.html`);
 ok(-e "t/tmp/out/style.css");