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

Add newly missing arg to match method.

[SVN r34291]
This commit is contained in:
Rene Rivera
2006-06-12 20:49:07 +00:00
parent f56c300b23
commit 3a5d4108ca

View File

@@ -91,7 +91,7 @@ class stlport-target-class : basic-target
self.version.5 = [ MATCH "^(5[.][^.]+).*" : $(version) ] ;
}
rule match ( property-set )
rule match ( property-set debug ? )
{
# Override the rule which detects if this basic-target is
# suitable for the specified property set.
@@ -118,6 +118,11 @@ class stlport-target-class : basic-target
}
matched ?= no-match ;
if $(debug)
{
ECHO " stlport.match: " $(matched) ;
}
return $(matched) ;
}