diff options
author | Jonathan Wakely <redi@gcc.gnu.org> | 2005-02-22 00:17:16 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2005-02-22 00:17:16 +0000 |
commit | 665794a6c42fc7a9eb31cd12522db01ff4c652e1 (patch) | |
tree | 9990ff1ddc99d19670d6e9ecd8c60e49f8f094e4 | |
parent | 80ad2e579c2a6bd6443f25e5c239fa3dee77690a (diff) | |
download | gcc-665794a6c42fc7a9eb31cd12522db01ff4c652e1.zip gcc-665794a6c42fc7a9eb31cd12522db01ff4c652e1.tar.gz gcc-665794a6c42fc7a9eb31cd12522db01ff4c652e1.tar.bz2 |
Makefile.am, [...]: Fix accidental extra change from previous commit.
* include/Makefile.am, include/Makefile.in: Fix accidental extra
change from previous commit.
From-SVN: r95366
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/Makefile.am | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/Makefile.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 6f5294a..8956f41 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2005-02-22 Jonathan Wakely <redi@gcc.gnu.org> + + * include/Makefile.am, include/Makefile.in: Fix accidental extra + change from previous commit. + 2005-02-21 Jonathan Wakely <redi@gcc.gnu.org> * include/tr1/memory: New file. diff --git a/libstdc++-v3/include/Makefile.am b/libstdc++-v3/include/Makefile.am index 20136b2..ad4930c 100644 --- a/libstdc++-v3/include/Makefile.am +++ b/libstdc++-v3/include/Makefile.am @@ -570,7 +570,7 @@ ${host_builddir}/gthr-default.h: ${toplevel_srcdir}/gcc/${glibcxx_thread_h} \ # Build a precompiled C++ include, stdc++.h.gch. ${pch_input}: ${allstamped} ${host_builddir}/c++config.h ${pch_source} - cp ${pch_source} ${pch_input}; \ + touch ${pch_input}; \ if [ ! -d "${pch_output_builddir}" ]; then \ mkdir -p ${pch_output_builddir}; \ fi; \ diff --git a/libstdc++-v3/include/Makefile.in b/libstdc++-v3/include/Makefile.in index 7df1e28..50c0024 100644 --- a/libstdc++-v3/include/Makefile.in +++ b/libstdc++-v3/include/Makefile.in @@ -945,7 +945,7 @@ ${host_builddir}/gthr-default.h: ${toplevel_srcdir}/gcc/${glibcxx_thread_h} \ # Build a precompiled C++ include, stdc++.h.gch. ${pch_input}: ${allstamped} ${host_builddir}/c++config.h ${pch_source} - cp ${pch_source} ${pch_input}; \ + touch ${pch_input}; \ if [ ! -d "${pch_output_builddir}" ]; then \ mkdir -p ${pch_output_builddir}; \ fi; \ |