Skip to content

Commit 40c6b1a

Browse files
grisumbraspdimov
authored andcommitted
guard tag against empty type (#908)
1 parent 768674f commit 40c6b1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boostcpp.jam

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ else
185185

186186
rule tag ( name : type ? : property-set )
187187
{
188-
if $(type) in STATIC_LIB SHARED_LIB IMPORT_LIB
188+
if $(type:E=x) in STATIC_LIB SHARED_LIB IMPORT_LIB
189189
{
190190
local args = $(.format-name-args) ;
191191
if $(layout) = versioned

0 commit comments

Comments
 (0)