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]

[commit] Fix stamp-h in gdbserver/


Since the conversion to autoconf 2.5x, an up-to-date "make" would rebuild
stamp-h in gdbserver, because the stamp file was not getting created.  It
was a whitespace change in autoconf which broke the bits in configure.ac.
I updated Makefile.in to be consistent with gdb/Makefile.in, and now "make
-s" doesn't have to do anything, again.

-- 
Daniel Jacobowitz
CodeSourcery, LLC

2005-03-04  Daniel Jacobowitz  <dan@codesourcery.com>

	* Makefile.in (stamp-h): Set CONFIG_HEADERS explicitly.

Index: gdbserver/Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/gdbserver/Makefile.in,v
retrieving revision 1.27
diff -u -p -r1.27 Makefile.in
--- gdbserver/Makefile.in	16 Oct 2004 16:18:54 -0000	1.27
+++ gdbserver/Makefile.in	4 Mar 2005 18:15:41 -0000
@@ -209,7 +209,7 @@ STAGESTUFF=${OBS} ${TSOBS} ${NTSOBS} ${A
 
 config.h: stamp-h ; @true
 stamp-h: config.in config.status
-	CONFIG_FILES="" $(SHELL) ./config.status
+	CONFIG_FILES="" CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
 
 Makefile: Makefile.in config.status
 	CONFIG_HEADERS="" $(SHELL) ./config.status


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