From d27960e7946cb8bce7c1d4a42faf2f56eb0266a5 Mon Sep 17 00:00:00 2001 From: Rob Savoye Date: Wed, 21 Apr 1993 04:18:11 +0000 Subject: [PATCH] Fixed typos so paths for executables works again. --- gdb/testsuite/Makefile.in | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/gdb/testsuite/Makefile.in b/gdb/testsuite/Makefile.in index 36f6e511c6e..dff01075cf7 100644 --- a/gdb/testsuite/Makefile.in +++ b/gdb/testsuite/Makefile.in @@ -40,8 +40,8 @@ RUNTEST = runtest RUNTESTFLAGS = CC = ` \ - if [ -f $${rootme}../../gcc/Makefile ] ; then \ - echo $${rootme}../../gcc/xgcc -B$${rootme}../../gcc/; \ + if [ -f $${rootme}/../../gcc/Makefile ] ; then \ + echo $${rootme}/../../gcc/xgcc -B$${rootme}../../gcc/; \ else \ if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ echo cc; \ @@ -51,8 +51,8 @@ CC = ` \ fi` CHILL = ` \ - if [ -f $${rootme}../../gcc/Makefile ] ; then \ - echo $${rootme}../../gcc/xgcc -B$${rootme}../../gcc/ -L$${rootme}../../chillrt/; \ + if [ -f $${rootme}/../../gcc/Makefile ] ; then \ + echo $${rootme}/../../gcc/xgcc -B$${rootme}../../gcc/ -L$${rootme}../../chillrt/; \ else \ if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ echo gcc; \ @@ -62,8 +62,8 @@ CHILL = ` \ fi` CXX = ` \ - if [ -f $${rootme}../../gcc/Makefile ] ; then \ - echo $${rootme}../../gcc/xgcc -B$${rootme}../../gcc/; \ + if [ -f $${rootme}/../../gcc/Makefile ] ; then \ + echo $${rootme}/../../gcc/xgcc -B$${rootme}../../gcc/; \ else \ if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ echo gcc; \ @@ -72,9 +72,12 @@ CXX = ` \ fi; \ fi` -GDB = `if [ -f $${rootme}../gdb ] ; \ - then echo $${rootme}../gdb ; \ - else echo gdb; fi` +GDB = ` \ + if [ -f $${rootme}/../gdb ] ; then \ + echo $${rootme}/../gdb ; \ + else echo gdb; \ + fi` + GDBFLAGS = EXPECT = `if [ -f $${rootme}../../expect/expect ] ; \ @@ -146,7 +149,8 @@ site.exp: ./config.status Makefile installcheck: check: site.exp all - $(RUNTEST) $(RUNTESTFLAGS) --tool gdb GDB=$(GDB) --srcdir $(srcdir) --target $(target_canonical) + rootme=`pwd`; export rootme; \ + $(RUNTEST) $(RUNTESTFLAGS) --tool gdb GDB=$(GDB) --srcdir $(srcdir) subdir_do: force @for i in $(DODIRS); do \ -- 2.30.2