OSDN Git Service

2007-01-23 Richard Guenther <rguenther@suse.de>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 23 Jan 2007 17:27:22 +0000 (17:27 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 23 Jan 2007 17:27:22 +0000 (17:27 +0000)
PR testsuite/30560
* ada/acats/run_acats: Do not call gnatmake or gnatchop
with full path.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121083 138bc75d-0d04-0410-961f-82ee72b054a4

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

index aef566a..11b3bda 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 b3b74cc..05f3ff5 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