On Thu, May 20, 2010 at 11:11:51AM +0200, Joachim Schipper wrote:
An addendum to the above: := really does expand exactly twice (and not
"until done"), although this is not obvious from the above. Consider:
A=$$B
B=b
FOO=$$A
BAR:=$$A
test:
echo '${FOO}'
echo '${BAR}'
This results in (with our make):
echo '$A'
$A
echo '$B'
$B
Joachim