]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR ada/30560 (gnatchop behaves differently dependend on argv[0] -- make check...
authorRichard Guenther <rguenther@suse.de>
Tue, 23 Jan 2007 17:27:22 +0000 (17:27 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Tue, 23 Jan 2007 17:27:22 +0000 (17:27 +0000)
2007-01-23  Richard Guenther  <rguenther@suse.de>

PR testsuite/30560
* ada/acats/run_acats: Do not call gnatmake or gnatchop
with full path.

From-SVN: r121083

gcc/testsuite/ChangeLog
gcc/testsuite/ada/acats/run_acats

index aef566ae1d4763e7edafa5f600a2015243bbff4e..11b3bdab444f90f418cf541f6af2d4081b640223 100644 (file)
@@ -1,3 +1,9 @@
+2007-01-23  Richard Guenther  <rguenther@suse.de>
+
+       PR testsuite/30560
+       * ada/acats/run_acats: Do not call gnatmake or gnatchop
+       with full path.
+
 2007-01-22  Richard Guenther  <rguenther@suse.de>
 
        PR tree-optimization/30038
index b3b74cca2df5703da4ffdc661a7e3bd42815e308..05f3ff57df5d91fb7eee31ae8a846cc9d848b889 100755 (executable)
@@ -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