* Makefile.in (CC_FOR_TARGET): Test for existence of gcc/xgcc, not

for existence of gcc/Makefile.
This commit is contained in:
Jim Kingdon
1993-11-08 23:12:38 +00:00
parent 3971f61b9c
commit 058470e1dc
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
Mon Nov 8 10:42:03 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 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): * inflow.c (terminal_init_inferior), infptrace.c (child_resume):
Add comments about use of Lynx PIDGET and how we will want to Add comments about use of Lynx PIDGET and how we will want to
clean it up. clean it up.

View File

@ -235,7 +235,7 @@ FLAGS_TO_PASS = \
# Flags that we pass when building the testsuite. # Flags that we pass when building the testsuite.
CC_FOR_TARGET = ` \ CC_FOR_TARGET = ` \
if [ -f $${rootme}/../gcc/Makefile ] ; then \ if [ -f $${rootme}/../gcc/xgcc ] ; then \
echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \ echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
else \ else \
if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \