From 31458502ff316467d1e32ea94df05418dcd4dd64 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/sf_and_dist/Jamfile.v2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/sf_and_dist/Jamfile.v2 b/doc/sf_and_dist/Jamfile.v2 index bd0e9d578..f8fdf0276 100644 --- a/doc/sf_and_dist/Jamfile.v2 +++ b/doc/sf_and_dist/Jamfile.v2 @@ -77,7 +77,8 @@ boostbook standalone pdf:index.on.type=1 ; -install pdf-install : standalone : . PDF math.pdf ; +install pdfinstall : standalone/pdf : . PDF math.pdf ; +explicit pdfinstall ;