Something with quickbook has changes so that "--output-file" is
required. The syntax that quickbook.jam is using (quickbook.exe
inputfile outputfile) now generates the very helpful error message
"Error: multiple_occurrences". :-/
The following patch to quickbook.jam fixes the problem for me. OK to commit?
--
Eric Niebler
Boost Consulting
www.boost-consulting.com
Index: quickbook.jam
===================================================================
RCS file: /cvsroot/boost/boost/tools/build/v2/tools/quickbook.jam,v
retrieving revision 1.7.2.3
diff -b -d -u -r1.7.2.3 quickbook.jam
--- quickbook.jam 4 Jul 2005 16:41:48 -0000 1.7.2.3
+++ quickbook.jam 4 Oct 2005 00:56:12 -0000
@@ -293,6 +293,6 @@
actions quickbook-to-boostbook
{
- $(QB-COMMAND) $(2) $(1) ;
+ $(QB-COMMAND) $(2) --output-file $(1)
}