This is the mail archive of the gdb-patches@sourceware.org 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]

Create .deps during rebuilds


This should help out folks with existing objdirs that "cvs up" across
the automatic dependency revision.  If we don't create .deps, then all
compilations fail.  Checked in.

-- 
Daniel Jacobowitz
CodeSourcery

2008-08-09  Daniel Jacobowitz  <dan@codesourcery.com>

	* Makefile.in (stamp-h): Also create .deps.

Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/Makefile.in,v
retrieving revision 1.1045
diff -u -p -r1.1045 Makefile.in
--- Makefile.in	8 Aug 2008 17:38:35 -0000	1.1045
+++ Makefile.in	9 Aug 2008 18:56:03 -0000
@@ -1184,7 +1184,7 @@ gnulib/Makefile: gnulib/Makefile.in gnul
 config.h: stamp-h ; @true
 stamp-h: config.in config.status
 	CONFIG_HEADERS=config.h:config.in \
-	  CONFIG_COMMANDS=default \
+	  CONFIG_COMMANDS="default depdir" \
 	  CONFIG_FILES= \
 	  CONFIG_LINKS= \
 	  $(SHELL) config.status


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