Allow use of "conditional" to multiply a condition that already has the full condition in it.

[SVN r41324]
This commit is contained in:
Rene Rivera 2007-11-24 02:16:50 +00:00
parent c4296e131f
commit ab07ba6523

View File

@ -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) ;
}
}
}