aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/po_plugin_adds_new_dependency.mdwn
diff options
context:
space:
mode:
authorhttp://www.cse.unsw.edu.au/~willu/ <http://www.cse.unsw.edu.au/~willu/@web>2009-08-14 22:21:04 -0400
committerJoey Hess <joey@kitenet.net>2009-08-14 22:21:04 -0400
commitfdf30251334bfff4b03ed1bbdd85a8fd016e75a8 (patch)
tree07072f26428303a4ef3d8f8dbbf812f89566fc24 /doc/bugs/po_plugin_adds_new_dependency.mdwn
parent1f64181f90a10b28fce3f2166b763a3333375ac9 (diff)
downloadikiwiki-fdf30251334bfff4b03ed1bbdd85a8fd016e75a8.tar
ikiwiki-fdf30251334bfff4b03ed1bbdd85a8fd016e75a8.tar.gz
Diffstat (limited to 'doc/bugs/po_plugin_adds_new_dependency.mdwn')
-rw-r--r--doc/bugs/po_plugin_adds_new_dependency.mdwn25
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/bugs/po_plugin_adds_new_dependency.mdwn b/doc/bugs/po_plugin_adds_new_dependency.mdwn
index 880b491cf..3da326f48 100644
--- a/doc/bugs/po_plugin_adds_new_dependency.mdwn
+++ b/doc/bugs/po_plugin_adds_new_dependency.mdwn
@@ -8,3 +8,28 @@ Was it intended that the po plugin add a new dependency?
make[1]: *** [po2wiki_stamp] Error 2
make: *** [extra_build] Error 2
+
+And it looks like this dependency is not easy to work around. The issue is that the newly translated base wiki means that the po plugin is being used by the build system. It is no longer optional. I've turned it off in my workspace like this: (heavy handed, but it lets me keep going until a proper fix is available)
+
+ diff --git a/Makefile.PL b/Makefile.PL
+ index 602d8fb..68728b7 100755
+ --- a/Makefile.PL
+ +++ b/Makefile.PL
+ @@ -42,7 +42,7 @@ extra_build: ikiwiki.out ikiwiki.setup docwiki
+ ./mdwn2man ikiwiki-makerepo 1 doc/ikiwiki-makerepo.mdwn > ikiwiki-makerepo.man
+ ./mdwn2man ikiwiki-transition 1 doc/ikiwiki-transition.mdwn > ikiwiki-transition.man
+ ./mdwn2man ikiwiki-update-wikilist 1 doc/ikiwiki-update-wikilist.mdwn > ikiwiki-update-wikilist.man
+ - $(MAKE) -C po
+ + # $(MAKE) -C po
+
+ docwiki: ikiwiki.out
+ $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.out -libdir . -setup docwiki.setup -refresh
+ @@ -114,7 +114,7 @@ extra_install: underlay_install
+ install ikiwiki.out $(DESTDIR)$(PREFIX)/bin/ikiwiki
+ install ikiwiki-makerepo ikiwiki-transition ikiwiki-update-wikilist $(DESTDIR)$(PREFIX)/bin/
+
+ - $(MAKE) -C po install DESTDIR=$(DESTDIR) PREFIX=$(PREFIX)
+ + # $(MAKE) -C po install DESTDIR=$(DESTDIR) PREFIX=$(PREFIX)
+
+ # These might fail if a regular user is installing into a home
+ # directory.