2
0
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:
Rene Rivera
2002-09-12 22:00:23 +00:00
parent 556ae33347
commit 2b045385ba
2 changed files with 4 additions and 0 deletions

View File

@@ -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)
{

View File

@@ -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)
{