Allow use of "conditional" to multiply a condition that already has the full condition in it.
[SVN r41324]
This commit is contained in:
parent
c4296e131f
commit
ab07ba6523
@ -1007,7 +1007,15 @@ module project-rules
|
||||
#
|
||||
rule conditional ( condition + : requirements * )
|
||||
{
|
||||
return $(condition:J=,):$(requirements) ;
|
||||
local condition = $(condition:J=,) ;
|
||||
if [ MATCH (:) : $(condition) ]
|
||||
{
|
||||
return $(condition)$(requirements) ;
|
||||
}
|
||||
else
|
||||
{
|
||||
return $(condition):$(requirements) ;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user