diff --git a/ChangeLog b/ChangeLog
index 3b7a25d0e1d..2b11464b1f4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,28 @@
+Wed Jan 13 17:06:45 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
+
+	* Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
+
+Thu Jan  7 12:50:16 1993  Mike Werner  (mtw@rtl.cygnus.com)
+
+	* ChangeLog: Corrected errors in the following ChangeLog entry:
+	  Wed Jan	 6 20:29:16 1993  Mike Werner
+
+Wed Jan  6 20:29:16 1993  Mike Werner  (mtw@rtl.cygnus.com)
+
+	* Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
+	  set exclusively by configure, using configure.in .
+        **** start-sanitize-chill ****
+	* configure.in: Changed the method by which SUBDIRS is set, in order
+          to properly handle the addition of chill related subdirectories
+          to the SUBDIRS list.
+        **** end-sanitize-chill ****
+
+Wed Jan  6 13:44:11 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
+
+	* test-build.mk: set $PATH for all builds
+
+	* Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
+
 Wed Jan  6 11:02:10 1993  Fred Fish  (fnf@cygnus.com)
 
 	* Makefile.in (GCC_FOR_TARGET):  Supply a default that matches
diff --git a/Makefile.in b/Makefile.in
index 8e511fe9263..30c9af9a2fb 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); \