Lines Matching defs:later
138 # assignment. The undefined variables are kept as-is and are later expanded
154 # the time of assignment but only later, when ${VAR} appears in the condition.
193 # The following test case demonstrates that the variable 'LATER' is preserved
194 # in the ':=' assignment since the variable 'LATER' is not yet defined.
195 # After the assignment to 'LATER', evaluating the variable 'INDIRECT'
196 # evaluates 'LATER' as well.
198 .undef LATER
199 INDIRECT:= ${LATER:S,value,replaced,}
203 LATER= late-value
211 .undef LATER
212 .undef later
213 INDIRECT:= ${LATER:S,value,replaced,}
217 LATER= uppercase-value
218 later= lowercase-value
249 # indirect:= ${LATER:S,value,replaced,} \
251 # ${LATER:value=sysv}
253 # The variable 'LATER' is not defined. An idea may be to append the
257 # indirect:= ${LATER:S,value,replaced,:tl} \
259 # ${LATER:value=sysv:tl}
269 .undef LATER
270 .undef later
271 INDIRECT:= ${LATER:S,value,replaced,} OK ${LATER:value=sysv}
279 LATER= uppercase-value
280 later= lowercase-value