From f17f15ae3c2cb9528b2127dbcdb55eed5ad9bb78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sun, 8 Jun 2008 18:09:13 +0000 Subject: [PATCH] Corrected two XML structure errors in the Boost Build tutorial.xml documentation file. [SVN r46252] --- v2/doc/src/tutorial.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v2/doc/src/tutorial.xml b/v2/doc/src/tutorial.xml index 73b1e137a..bb7c7d059 100644 --- a/v2/doc/src/tutorial.xml +++ b/v2/doc/src/tutorial.xml @@ -409,7 +409,7 @@ use-project /library-example/foo : util/foo ; Second, we modify app/Jamfile to use the project id: -exe app : app.cpp /library-example/foo//bar ; +exe app : app.cpp /library-example/foo//bar ; The /library-example/foo//bar syntax is used to refer to the target bar in the project with id @@ -458,7 +458,7 @@ project shared, and to build a static library, the value should be static. You can request a static build either on the command line: - bjam link=static + bjam link=static or in the library's requirements: lib l : l.cpp : <link>static ;