This is the mail archive of the binutils@sourceware.org mailing list for the binutils 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]

minor dependency fix in binutils/


Some more testing revealed that one of the objects built with
CC_FOR_BUILD in binutils needed a couple more dependencies.
Committed as obvious (when comparing with the set of dependencies
that were listed by dep-am before my bunch of changes).

There is one more dependency tracking issue I'm aware of in binutils:
config.status currently creates a file '.deps/emul_$(EMULATION).Po'
(literally!).  I'm not sure whether that causes an actual problem on any
system, but I would guess not.  The file isn't used for dependency
tracking later.

Thanks,
Ralf

2009-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>

	* Makefile.am (syslex.o): Depend on sysinfo.h config.h.
	* Makefile.in: Regenerate.

Index: binutils/Makefile.am
===================================================================
RCS file: /cvs/src/src/binutils/Makefile.am,v
retrieving revision 1.114
diff -u -r1.114 Makefile.am
--- binutils/Makefile.am	22 Aug 2009 19:02:56 -0000	1.114
+++ binutils/Makefile.am	23 Aug 2009 10:19:12 -0000
@@ -248,7 +248,7 @@
 sysinfo$(EXEEXT_FOR_BUILD): sysinfo.o syslex.o
 	$(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
 
-syslex.o: syslex.c
+syslex.o: syslex.c sysinfo.h config.h
 	if [ -r syslex.c ]; then \
 	  $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) syslex.c -Wno-error ; \
 	else \


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