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]
Other format: [Raw text]

Re: [LTO, committed] Fix simple typo in gcc/lto/Make-lang.in


On Wed, 2006-09-20 at 22:08 -0700, Andrew Pinski wrote: 
> Thanks,
> Andrew Pinski
> 
> ChangeLog:
> 
> 	* gcc/lto/Make-lang.in (lto-read.o): Remove white space before
> 	the ":".

Actually this was not enough, I knew I would send the email before it
worked.

Anyways the one which works is attached, "lto/" needed to be attached to
the .o file and the .c file.

ChangeLog: 

	* gcc/lto/Make-lang.in (lto-read.o): Remove white space before
	the ":" and add "lto/" in front of the name of the object file.

Index: gcc/gcc/lto/Make-lang.in
===================================================================
--- gcc/gcc/lto/Make-lang.in	(revision 117106)
+++ gcc/gcc/lto/Make-lang.in	(working copy)
@@ -85,10 +85,10 @@ lto/lto-elf.o: lto/lto-elf.c $(CONFIG_H)
 	toplev.h $(LTO_H) $(LTO_TAGS_H)
 lto/lto-symtab.o: lto/lto-symtab.c $(CONFIG_H) coretypes.h \
 	$(SYSTEM_H) toplev.h $(TREE_H) $(LTO_H) lto/lto-tree.h
-lto-read.o : lto-read.c $(CONFIG_H) $(SYSTEM_H) \
+lto/lto-read.o: lto/lto-read.c $(CONFIG_H) $(SYSTEM_H) \
 	coretypes.h $(TM_H) toplev.h $(TREE_H) $(EXPR_H) $(FLAGS_H) \
 	$(PARAMS_H) input.h $(VARRAY_H) $(HASHTAB_H) langhooks.h \
 	$(BASIC_BLOCK_H) tree-iterator.h tree-pass.h tree-flow.h \
 	$(CGRAPH_H) $(FUNCTION_H) $(GGC_H) $(DIAGNOSTIC_H) \
 	except.h debug.h $(TIMEVAR_H) $(LTO_TAGS_H) lto-tree-flags.def \
-	lto-tree-tags.def output.h dwarf2asm.h dwarf2out.h 
+	lto-tree-tags.def output.h dwarf2asm.h dwarf2out.h

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