From 1f88e2c1500396acfec7bd3b8f10cd69bbd001b1 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 14 Jul 2012 16:05:50 +0000 Subject: [PATCH] Merge changes from trunk: Fix PDF install rule so that it's explicit and automatically invokes a PDF build when specified on the command line. So "bjam pdfinstall" will now build and install the PDF to the current directory. This works around some problems that the previous versions had if the user did not have an FO processor installed (basically Daniel James was unable to build the HTML docs for the distribution if the pdfinstall rule was implicit). [SVN r79500] --- doc/Jamfile.v2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 index 15a36f3..253bcd0 100644 --- a/doc/Jamfile.v2 +++ b/doc/Jamfile.v2 @@ -72,4 +72,5 @@ boostbook standalone pdf:boost.url.prefix=http://www.boost.org/doc/libs/release/libs/ratio/doc/html ; -install pdf-install : standalone : . PDF ; +install pdfinstall : standalone/pdf : . PDF ; +explicit pdfinstall ; \ No newline at end of file