From 3a5d4108ca70c87f8a9bc0af6696e1247bad1267 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 12 Jun 2006 20:49:07 +0000 Subject: [PATCH] Add newly missing arg to match method. [SVN r34291] --- src/tools/stlport.jam | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/tools/stlport.jam b/src/tools/stlport.jam index f976abd72..5f79f3f9f 100644 --- a/src/tools/stlport.jam +++ b/src/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) ; }