summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorespindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4>2006-02-15 18:46:57 +0000
committerespindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4>2006-02-15 18:46:57 +0000
commitf0ecf45ae6723b3eadb4f357dc9eea8e3fd2ae2d (patch)
tree3966447eaff631240698173eb99c498120dbbff6 /gcc
parentc4fe50b1e02747e8c5410ba6f7a81579a64f9100 (diff)
downloadgcc-f0ecf45ae6723b3eadb4f357dc9eea8e3fd2ae2d.tar.gz
* gcc/Makefile.in: Fix the examples about the use of stamps
M gcc/ChangeLog M gcc/Makefile.in git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111113 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-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 Espíndola <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
#