------- Comment #1 from rguenth at gcc dot gnu dot org 2007-01-23 17:09 ------- The testsuite is fixed by the following which should be safe because we're adding the path of $host_gnat* to PATH first.
Index: run_acats =================================================================== --- run_acats (revision 121081) +++ run_acats (working copy) @@ -40,7 +40,7 @@ echo '#!/bin/sh' > host_gnatchop echo PATH=`dirname $host_gnatchop`:'$PATH' >> host_gnatchop echo unset ADA_INCLUDE_PATH ADA_OBJECTS_PATH GCC_EXEC_PREFIX >> host_gnatchop echo export PATH >> host_gnatchop -echo exec $host_gnatchop '"$@"' >> host_gnatchop +echo exec gnatchop '"$@"' >> host_gnatchop chmod +x host_gnatchop @@ -48,7 +48,7 @@ echo '#!/bin/sh' > host_gnatmake echo PATH=`dirname $host_gnatmake`:'$PATH' >> host_gnatmake echo unset ADA_INCLUDE_PATH ADA_OBJECTS_PATH GCC_EXEC_PREFIX >> host_gnatmake echo export PATH >> host_gnatmake -echo exec $host_gnatmake '"$@"' >> host_gnatmake +echo exec gnatmake '"$@"' >> host_gnatmake chmod +x host_gnatmake -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30560