From 315cfc48cae14453531b36115958ef833815d590 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sun, 8 Apr 2007 02:21:10 +0000 Subject: [PATCH] The ":" to identify a target for the "run" feature must be at the beginning of the string; it was formerly matched anywhere. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20610 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- build/jam/MiscRules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/jam/MiscRules b/build/jam/MiscRules index 95d7ce1818..8eea5ca2d8 100644 --- a/build/jam/MiscRules +++ b/build/jam/MiscRules @@ -186,7 +186,7 @@ rule RunCommandLine commandLine local i ; for i in $(commandLine) { # targets are marked by the ":" prefix - local target = [ Match :(.*) : $(i) ] ; + local target = [ Match ^:(.*) : $(i) ] ; if $(target) { targets += $(target) ; targetVarName = $(targetVarName)X ;