summaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2011-01-25 15:39:58 -0400
committerJoey Hess <joey@kitenet.net>2011-01-25 15:39:58 -0400
commit726e0de7d7a9044c8202f777cf2d70af2ed3abce (patch)
treeb9f52ace0c42d8d28138f606b9ff9080dc708e7b /IkiWiki
parent7626ebeb64a02cc2d914ad2df3d5361d8ceeaae3 (diff)
run po checkconfig last so it can see underlays added in other checkconfig hooks
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/po.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm
index 9ed4a1adb..4f8d5036e 100644
--- a/IkiWiki/Plugin/po.pm
+++ b/IkiWiki/Plugin/po.pm
@@ -38,7 +38,8 @@ memoize("percenttranslated");
sub import {
hook(type => "getsetup", id => "po", call => \&getsetup);
- hook(type => "checkconfig", id => "po", call => \&checkconfig);
+ hook(type => "checkconfig", id => "po", call => \&checkconfig,
+ last => 1);
hook(type => "needsbuild", id => "po", call => \&needsbuild);
hook(type => "scan", id => "po", call => \&scan, last => 1);
hook(type => "filter", id => "po", call => \&filter);