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

Fixed a typo in code for setting the default tag joiner character in the Boost Build tools/common.jam module. Caught and reported by Steven Watanabe.

[SVN r47370]
This commit is contained in:
Jurko Gospodnetić
2008-07-13 00:42:50 +00:00
parent 1fe8d9fcbd
commit e8099a3cc9

View File

@@ -799,7 +799,7 @@ rule format-name ( format * : name : type ? : property-set )
local rule join-tag ( joiner ? : tag ? )
{
if ! $(joinder) { joiner = - ; }
if ! $(joiner) { joiner = - ; }
return $(joiner)$(tag) ;
}