2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00

Minor stylistic changes in the Boost Build build/feature.jam module.

[SVN r48702]
This commit is contained in:
Jurko Gospodnetić
2008-09-10 19:41:08 +00:00
parent d3644b5c0d
commit e1e0fb901f

View File

@@ -357,7 +357,8 @@ local rule expand-subfeatures-aux (
local subvalue = $(subvalues[1]) ; # Pop the head off of subvalues.
subvalues = $(subvalues[2-]) ;
local subfeature = [ find-implied-subfeature $(feature) $(subvalue) : $(value) ] ;
local subfeature = [ find-implied-subfeature $(feature) $(subvalue) :
$(value) ] ;
# If no subfeature was found reconstitute the value string and use that.
if ! $(subfeature)
@@ -771,7 +772,8 @@ local rule is-subfeature-of ( parent-property f )
{
# The feature has the form <topfeature-topvalue:subfeature>, e.g.
# <toolset-msvc:version>.
local feature-value = [ split-top-feature $(specific-subfeature[1]) ] ;
local feature-value = [ split-top-feature $(specific-subfeature[1])
] ;
if <$(feature-value[1])>$(feature-value[2]) = $(parent-property)
{
return true ;