From 058470e1dc4c80b6372b6ecabe8edb2d55053fe8 Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Mon, 8 Nov 1993 23:12:38 +0000 Subject: [PATCH] * Makefile.in (CC_FOR_TARGET): Test for existence of gcc/xgcc, not for existence of gcc/Makefile. --- gdb/ChangeLog | 3 +++ gdb/Makefile.in | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a0f4649eb1..7093a9af36 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ Mon Nov 8 10:42:03 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + * Makefile.in (CC_FOR_TARGET): Test for existence of gcc/xgcc, not + for existence of gcc/Makefile. + * inflow.c (terminal_init_inferior), infptrace.c (child_resume): Add comments about use of Lynx PIDGET and how we will want to clean it up. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 32a3efe9cf..c2ba25abf8 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -235,7 +235,7 @@ FLAGS_TO_PASS = \ # Flags that we pass when building the testsuite. CC_FOR_TARGET = ` \ - if [ -f $${rootme}/../gcc/Makefile ] ; then \ + if [ -f $${rootme}/../gcc/xgcc ] ; then \ echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \ else \ if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ -- 2.34.1