diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-05-19 13:57:47 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-05-19 13:57:47 -0400 |
commit | d6b8509cbb9b0b67e9cd588da5aa54d8d07397af (patch) | |
tree | ded2b575120f08f9983eeb41d40f7d394a9c399a | |
parent | 8973f0a6e31ad5db325fcdee2c875dd029673dad (diff) |
set underlaydirbase in docwiki.setup
4291f2e3d7d1eb160427764e622d247145652e81 made
just setting underlaydir not enough to change
where other underlays are loaded from. While generally
a good thing, that broke building of the docwiki
from the source tree, because underlaydirbase
was not pointing there.
Setting underlaydirbase in the setup file is a solution,
albeit slightly hacky (since the variable is undocumented and internal).
-rw-r--r-- | docwiki.setup | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docwiki.setup b/docwiki.setup index 6d732fd6b..52421e501 100644 --- a/docwiki.setup +++ b/docwiki.setup @@ -6,6 +6,7 @@ use IkiWiki::Setup::Standard { srcdir => "doc", destdir => "html", templatedir => "templates", + underlaydirbase => "underlays", underlaydir => "underlays/basewiki", discussion => 0, exclude => qr/\/discussion|bugs\/*|todo\/*/, |