diff options
author | Jim Wilson <wilson@tuliptree.org> | 1993-01-14 01:07:41 +0000 |
---|---|---|
committer | Jim Wilson <wilson@tuliptree.org> | 1993-01-14 01:07:41 +0000 |
commit | 31883f012edd3136e402c13a5a14971cde5cb31f (patch) | |
tree | 98371089a987618b652bc1c77cf886322dd2c7bf /Makefile.in | |
parent | 9f73dd6a47b841e23829cdb16a932485a0b0c574 (diff) | |
download | gdb-31883f012edd3136e402c13a5a14971cde5cb31f.zip gdb-31883f012edd3136e402c13a5a14971cde5cb31f.tar.gz gdb-31883f012edd3136e402c13a5a14971cde5cb31f.tar.bz2 |
Rename uninstalled gcc driver from gcc to xgcc.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 8e511fe..30c9af9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -56,7 +56,7 @@ CC = cc CFLAGS = -g CXX = gcc CXXFLAGS = -g -O -GCC_FOR_TARGET = ./gcc -B./ +GCC_FOR_TARGET = ./xgcc -B./ RANLIB = ranlib NM = nm @@ -89,7 +89,7 @@ INSTALL_TARGET = install.all CC_FOR_TARGET = ` \ if [ -f $${rootme}/gcc/Makefile ] ; then \ - echo $${rootme}/gcc/gcc -B$${rootme}/gcc/; \ + echo $${rootme}/gcc/xgcc -B$${rootme}/gcc/; \ else \ if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ echo $(CC); \ @@ -100,7 +100,7 @@ CC_FOR_TARGET = ` \ CXX_FOR_TARGET = ` \ if [ -f $${rootme}/gcc/Makefile ] ; then \ - echo $${rootme}/gcc/gcc -B$${rootme}/gcc/; \ + echo $${rootme}/gcc/xgcc -B$${rootme}/gcc/; \ else \ if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ echo $(CXX); \ |