This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB 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]

PATCH Missing dependecies for memattr.o



I noticed during a new multi-arch rebuild that memattr.o wasn't being 
recompiled.  It turns out that it didn't have a dependencies rule in the 
Makefile.

Committed as obvious.

R.

2002-02-03  Richard Earnshaw  <rearnsha@arm.com>

	* Makefile.in (memattr.o): Add missing dependencies rule.

Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/Makefile.in,v
retrieving revision 1.154
diff -p -r1.154 Makefile.in
*** Makefile.in	2002/02/03 11:43:17	1.154
--- Makefile.in	2002/02/03 16:19:41
*************** os9kread.o: os9kread.c $(buildsym_h) $(c
*** 1727,1732 ****
--- 1727,1735 ----
  
  mem-break.o: mem-break.c $(defs_h) 
  
+ memattr.o: memattr.c $(defs_h) $(command_h) $(gdbcmd_h) $(memattr_h) \
+ 	$(target_h) $(value_h) $(language_h) $(gdb_string_h)
+ 
  minsyms.o: minsyms.c $(bfd_h) $(defs_h) $(objfiles_h) $(symfile_h) \
  	$(symtab_h) $(gdb_string_h) $(value_h) $(cp_abi_h)
  

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