From f7ca46d66f50f2520120a859b8a7c01eca6bcb23 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 15 Feb 2006 18:46:57 +0000 Subject: [PATCH] Makefile.in: Fix the examples about the use of stamps * gcc/Makefile.in: Fix the examples about the use of stamps M gcc/ChangeLog M gcc/Makefile.in From-SVN: r111113 --- gcc/ChangeLog | 6 +++++- gcc/Makefile.in | 8 ++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2a287c0e90c..4d44ab544e7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-02-15 Rafael Ávila de Espíndola + + * Makefile.in: Fix the examples about the use of stamps + 2006-02-15 Michael Matz PR middle-end/22275 @@ -3683,7 +3687,7 @@ * basic-block.h: Remove the prototype for partition_hot_cold_basic_blocks. -2006-01-16 Rafael Ãvila de Espíndola +2006-01-16 Rafael Ãvila de EspÃ�­ndola * cppspec.c (lang_specific_spec_functions): Remove. * gcc.c (lookup_spec_function): Use static_spec_functions directly. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index d6d79005cdd..f673502ce4d 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1134,7 +1134,7 @@ endif # must not be overwritten with a identical copy. One solution is to use a # temporary file # tree-check.h: build/gencheck$(build_exeext) -# $(RUN_GEN) build/gencheck$(build_exeext) > tree-check.h +# $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h # # This solution has a different problem. Since the time stamp of tree-check.h @@ -1142,16 +1142,16 @@ endif # To prevent this, one can add a stamp # tree-check.h: s-check # s-check : build/gencheck$(build_exeext) -# $(RUN_GEN) build/gencheck$(build_exeext) > tree-check.h +# $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h # $(STAMP) s-check # # The problem with this solution is that make thinks that tree-check.h is # always unchanged. Make must be deceived into thinking that tree-check.h is -# rebuild by the "a: s-a" rule. To do this, add a dummy command: +# rebuild by the "tree-check.h: s-check" rule. To do this, add a dummy command: # tree-check.h: s-check; @true # s-check : build/gencheck$(build_exeext) -# $(RUN_GEN) build/gencheck$(build_exeext) > tree-check.h +# $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h # $(STAMP) s-check # -- 2.30.2