Browse Source

guard tag against empty type (#908)

Dmitry 2 years ago
parent
commit
40c6b1adba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      boostcpp.jam

+ 1 - 1
boostcpp.jam

@@ -185,7 +185,7 @@ else
 
 rule tag ( name : type ? : property-set )
 {
-    if $(type) in STATIC_LIB SHARED_LIB IMPORT_LIB
+    if $(type:E=x) in STATIC_LIB SHARED_LIB IMPORT_LIB
     {
         local args = $(.format-name-args) ;
         if $(layout) = versioned

粤ICP备19079148号