diff options
author | Steven Watanabe <steven@providere-consulting.com> | 2011-11-29 23:35:33 +0000 |
---|---|---|
committer | Steven Watanabe <steven@providere-consulting.com> | 2011-11-29 23:35:33 +0000 |
commit | e39b4b6888d662073ff7bb45400b5802898cb45d (patch) | |
tree | b867018aade52514249441c649eb34056ea57984 /boostcpp.jam | |
parent | cf13b4bf6b6181645edb9ff7285e34c2b8addd6e (diff) | |
download | boost-e39b4b6888d662073ff7bb45400b5802898cb45d.tar.gz |
Fix operator precedence error in comparison.
[SVN r75733]
Diffstat (limited to 'boostcpp.jam')
-rw-r--r-- | boostcpp.jam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boostcpp.jam b/boostcpp.jam index 330a974d95..db7360dd97 100644 --- a/boostcpp.jam +++ b/boostcpp.jam @@ -80,7 +80,7 @@ if $(layout) = system && $(build-type) = complete ECHO "error: Cannot use --layout=system with --build-type complete." ; ECHO "error: Please used either --layout=versioned or --layout=tagged " ; ECHO "error: if you wish to build multiple variants." ; - if ! [ os.name ] = NT + if [ os.name ] != NT { ECHO "error: Note that --layout=system is default on Unix starting with Boost 1.40." ; } |