$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-build] bug: condition eval on FreeBSD not correctly working
From: Oliver Kowalke (oliver.kowalke_at_[hidden])
Date: 2010-05-26 11:51:15
Hi,
in my Jamfile.v2 the statement:
if $(arch) = "i386" && (<toolset>gcc in $(properties) || <toolset>intel
in $(properties))
evaluates to true on LINUX and to false on FreeBSD.
The error is caused by (<toolset>gcc in $(properties) || <toolset>intel
in $(properties)) because
if $(arch) = "i386" && <toolset>gcc in $(properties)
Is true on FreeBSD.
Oliver