diff options
author | 2013-10-18 17:41:42 +0000 | |
---|---|---|
committer | 2013-10-26 23:50:59 +0100 | |
commit | 1be9677a8be2e34f0942dd0bb3424965ad093528 (patch) | |
tree | de989e56ad977a327c7d57a5ae2e3f9ddb7cac3c | |
parent | 897428ee14ba7ab4fb16203f2305cf85276d3f99 (diff) | |
download | paludis-1be9677a8be2e34f0942dd0bb3424965ad093528.tar.gz paludis-1be9677a8be2e34f0942dd0bb3424965ad093528.tar.xz |
Fix argument order in xmlto invocations
This worked on glibc-based systems because glibc's getopt permutes argv
as it scans by default instead of conforming to POSIX.
-rw-r--r-- | src/clients/cave/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clients/cave/Makefile.am b/src/clients/cave/Makefile.am index d502557f3..e59587a70 100644 --- a/src/clients/cave/Makefile.am +++ b/src/clients/cave/Makefile.am @@ -113,7 +113,7 @@ $(command_MANS_txts) : man-cave xmlto man $< .xml.html-man-fragment : $(man_MANS_xmls) - xmlto html $< -o $@-dir + xmlto -o $@-dir html $< sed \ -e '1s,^.*\(<div class="refnamediv">\),\1,' \ -e '$$s,</body>.*,,' -e '$$s,</div><div class="navfooter"><hr></div>,,' \ |