aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Ávila de Espíndola <rafael.espindola@gmail.com>2006-02-15 18:46:57 +0000
committerRafael Ávila de Espíndola <rafael.espindola@gmail.com>2006-02-15 18:46:57 +0000
commit8f9bec2a8b4d0ad6708842171aa034bc7a253ba2 (patch)
tree3966447eaff631240698173eb99c498120dbbff6
parentd13afbb8ec786ebc1ad2cb4b743c7efed58b4c12 (diff)
* gcc/Makefile.in: Fix the examples about the use of stamps
M gcc/ChangeLog M gcc/Makefile.in git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@111113 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/Makefile.in8
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 Espndola <rafael.espindola@gmail.com>
+
+ * Makefile.in: Fix the examples about the use of stamps
+
2006-02-15 Michael Matz <matz@suse.de>
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 <rafael.espindola@gmail.com>
+2006-01-16 Rafael Ãvila de Esp�ndola <rafael.espindola@gmail.com>
* 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
#