aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-11-08 23:12:38 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-11-08 23:12:38 +0000
commit058470e1dc4c80b6372b6ecabe8edb2d55053fe8 (patch)
tree44084c97bec0de29873aaf98c5742c6bc102d352
parent3971f61b9ccabf948f87d5e053bb79c474631b93 (diff)
downloadgdb-058470e1dc4c80b6372b6ecabe8edb2d55053fe8.zip
gdb-058470e1dc4c80b6372b6ecabe8edb2d55053fe8.tar.gz
gdb-058470e1dc4c80b6372b6ecabe8edb2d55053fe8.tar.bz2
* Makefile.in (CC_FOR_TARGET): Test for existence of gcc/xgcc, not
for existence of gcc/Makefile.
-rw-r--r--gdb/ChangeLog3
-rw-r--r--gdb/Makefile.in2
2 files changed, 4 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index a0f4649..7093a9a 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 32a3efe9..c2ba25a 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 \