From e386b1acbe77048d2b93df176167aaf26512518e Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 14 Jul 2012 11:21:03 +0000 Subject: [PATCH] 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 r79492] --- doc/Jamfile.v2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 index 67398ee..0a8f553 100644 --- a/doc/Jamfile.v2 +++ b/doc/Jamfile.v2 @@ -66,7 +66,7 @@ boostbook standalone on ; -install pdf-install : standalone : PDF . type_traits.pdf ; - +install pdfinstall : standalone/pdf : PDF . type_traits.pdf ; +explicit pdfinstall ;