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

Correct operator precedence.

Fixes #6209.

[SVN r75803]
This commit is contained in:
Vladimir Prus
2011-12-04 15:43:05 +00:00
parent a3364c6415
commit 000b9ece98

View File

@@ -670,7 +670,7 @@ local rule extract-syntax (
while ! $(syntax) && ! [ MATCH "^[$(ws)]*(#)" : $(line) ] && $($(var))
{
local m = [ MATCH "^[$(ws)]*(.*)$" : $(line) ] ;
if $(m) && ! $(m) = ""
if $(m) && $(m) != ""
{
syntax = $(m) ;
}