From 3d3e5a349dfa31ffbee1a7fb37ffee57fc57f8d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Fri, 18 Jul 2008 06:28:54 +0000 Subject: [PATCH] Minor stylistic code change in Boost Build's build/property.jam module. [SVN r47538] --- src/build/property.jam | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/build/property.jam b/src/build/property.jam index 66bd96858..df1d8d33f 100644 --- a/src/build/property.jam +++ b/src/build/property.jam @@ -526,9 +526,12 @@ rule translate-dependencies ( specification * : project-id ) if dependency in [ feature.attributes $(p:G) ] { - if [ regex.match (.*//.*) : $(p:G=) ] { + if [ regex.match (.*//.*) : $(p:G=) ] + { result += $(condition)$(p) ; - } else { + } + else + { result += $(condition)$(p:G)$(project-id)//$(p:G=) ; } }