mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 01:12:13 +00:00
Fix for when varaibles are edclared with an empty value.
[SVN r15279]
This commit is contained in:
@@ -598,10 +598,12 @@ local rule scan-variable (
|
||||
if $(var-parts[2]) = "?="
|
||||
{
|
||||
default-value = $(value) ;
|
||||
default-value ?= "(empty)" ;
|
||||
}
|
||||
else
|
||||
{
|
||||
initial-value = $(value) ;
|
||||
initial-value ?= "(empty)" ;
|
||||
}
|
||||
if $(comment-block)
|
||||
{
|
||||
|
||||
@@ -598,10 +598,12 @@ local rule scan-variable (
|
||||
if $(var-parts[2]) = "?="
|
||||
{
|
||||
default-value = $(value) ;
|
||||
default-value ?= "(empty)" ;
|
||||
}
|
||||
else
|
||||
{
|
||||
initial-value = $(value) ;
|
||||
initial-value ?= "(empty)" ;
|
||||
}
|
||||
if $(comment-block)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user