From 67c6803f60bde5e7ffc62e3fcdf5c7c6a79489b2 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] --- overloaded_function/doc/Jamfile.v2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/overloaded_function/doc/Jamfile.v2 b/overloaded_function/doc/Jamfile.v2 index a728e83..04c13dd 100644 --- a/overloaded_function/doc/Jamfile.v2 +++ b/overloaded_function/doc/Jamfile.v2 @@ -28,5 +28,5 @@ boostbook doc : qbk pdf:boost.url.prefix=http://www.boost.org/doc/libs/release/libs/functional/overloaded_function/doc/html ; -install pdf-install : doc : . PDF overloaded_function.pdf ; -explicit pdf-install ; +install pdfinstall : doc/pdf : . PDF overloaded_function.pdf ; +explicit pdfinstall ;