From 799ff795be52cecc0ff1d4ada583438a26d24e6c Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 12 Jun 2006 20:51:13 +0000 Subject: [PATCH] Add newly missing arg to match method. (merge from HEAD) [SVN r34292] --- v2/tools/stlport.jam | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/v2/tools/stlport.jam b/v2/tools/stlport.jam index f976abd72..5f79f3f9f 100644 --- a/v2/tools/stlport.jam +++ b/v2/tools/stlport.jam @@ -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) ; }