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]

[intl] Committed a dependency


I noticed that I had a pasto in intl/Makefile.in by writing the rule for config.h.in as config.in.

This caused autoheader to always run even in --disable-maintainer-mode.

Committed as obvious.

2004-09-23  Kelley Cook  <kcook@gcc.gnu.org>

	* Makefile.in (config.h.in): Correct dependencies.
	(stamp-h1): Likewise.
	(config.intl): Likewise.

Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/intl/Makefile.in,v
retrieving revision 1.3
diff -u -r1.3 Makefile.in
--- Makefile.in	22 Sep 2004 23:53:59 -0000	1.3
+++ Makefile.in	23 Sep 2004 03:52:18 -0000
@@ -196,7 +196,7 @@
 Makefile: $(srcdir)/Makefile.in config.status
 	$(SHELL) ./config.status Makefile
 
-config.intl: config.intl.in config.status
+config.intl: $(srcdir)/config.intl.in config.status
 	$(SHELL) ./config.status config.intl
 	
 config.status: $(srcdir)/configure
@@ -220,11 +220,11 @@
 config.h: stamp-h1
 	test -f config.h || (rm -f stamp-h1 && $(MAKE) stamp-h1)
 
-stamp-h1: $(srcdir)/config.in config.status
+stamp-h1: $(srcdir)/config.h.in config.status
 	-rm -f stamp-h1
 	$(SHELL) ./config.status config.h
 
-$(srcdir)/config.in: @MAINT@ $(srcdir)/configure
+$(srcdir)/config.h.in: @MAINT@ $(srcdir)/aclocal.m4 $(srcdir)/configure.ac
 	cd $(srcdir) && $(AUTOHEADER)
 	-rm -f stamp-h1
 	

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