From 653dde80b2879f274f3a30a7e505cac178a9de11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Fri, 4 Jul 2008 06:47:03 +0000 Subject: [PATCH] Minor stylistic comment change in the Boost Build tools/common.jam script. [SVN r47069] --- v2/tools/common.jam | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/v2/tools/common.jam b/v2/tools/common.jam index 4946a33bf..afb5ba602 100644 --- a/v2/tools/common.jam +++ b/v2/tools/common.jam @@ -574,6 +574,8 @@ rule MkDir { # Cheesy gate to prevent multiple invocations on same dir. $(<)-mkdir = true ; + + # Schedule the mkdir build action. MkDir1 $(<) ; # Prepare a Jam 'dirs' target that can be used to make the build only @@ -594,7 +596,7 @@ rule MkDir } } - if $(s) && $(s) != $(<) + if $(s) && ( $(s) != $(<) ) { DEPENDS $(<) : $(s) ; MkDir $(s) ;