3 # 06.02.2006 Volker Quetschke
4 # Verify that the .SETDIR attribute works separately from the target
5 # definition. (issue 61714)
10 tmpfiles
="$file1 $file2"
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( $ -> \$ ).
31 output1
=`eval ${DMAKEPROG} -r -f $file1`
34 if test "$output1" != ":$file2:"; then
35 echo "Wrong result - use of .SETDIR was not successful."
39 if test $result1 -eq 0; then
40 echo "Success - Cleaning up"