3 # 16.07.2006 Volker Quetschke
4 # Check that evaluating an empty macro and thereby initializing it does not
5 # prevent the *= and *:= operator from assigning a new value.
12 trap '{ echo "trapped signal - removing temporary files" ; rm -rf $tmpfiles ; }' 1 2 3 15
14 # Remove files from prior failed run
17 # Remember to quote variables in generated makefiles( $ -> \$ ).
18 # Check that we set AAA to set_AAA.
33 output1
=`eval ${DMAKEPROG} -rf $file1 2>&1 `
36 if test $output1 = "set_AAA" ; then
40 echo "Test 1: Wrong result: $output1"
45 if test $result1 -eq 0 ; then
46 echo "Success - Cleaning up"
50 echo "Failure! Unexpected result."