This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Makefile.in typo fix


tradcpp0 had a typo in the dependency list, which I found while
testing the patch to make it support #include_next.

Applied to branch and mainline.

-- 
zw   The beginning of almost every story is actually a bone, something with
     which to court the dog, which may bring you closer to the lady.
     	-- Amos Oz, _The Story Begins_

	* Makefile.in (tradcpp0): Correct typo in dependency list.

===================================================================
Index: Makefile.in
--- Makefile.in	2001/05/04 02:58:45	1.655
+++ Makefile.in	2001/05/07 04:28:41
@@ -1978,7 +1978,7 @@ mkdeps.o: mkdeps.c $(CONFIG_H) $(SYSTEM_
 # The traditional mode preprocessor, a separate program for ease of
 # maintenance.  Some code is shared with the ISO-C cpp.
 tradcpp0$(exeext): tradcpp.o tradcif.o cppdefault.o version.o intl.o \
-        mkdeps.h $(LIBDEPS)
+        mkdeps.o $(LIBDEPS)
 	$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o tradcpp0$(exeext) \
 	tradcpp.o tradcif.o mkdeps.o cppdefault.o version.o intl.o $(LIBS)
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]