diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2009-09-02 22:03:32 +0000 |
---|---|---|
committer | Ralf Wildenhues <rwild@gcc.gnu.org> | 2009-09-02 22:03:32 +0000 |
commit | 865dfe398b530c3c952d031d2c9a1d212be01c23 (patch) | |
tree | ef79de3650b855dda4743e3d066fd04859e8b9dd | |
parent | 28ed065ef9f3450c5c7f7fe53a3aff66c1721a6d (diff) | |
download | gcc-865dfe398b530c3c952d031d2c9a1d212be01c23.zip gcc-865dfe398b530c3c952d031d2c9a1d212be01c23.tar.gz gcc-865dfe398b530c3c952d031d2c9a1d212be01c23.tar.bz2 |
Fix 'make clean' to remove stamp-host file in libstdc++-v3/include.
libstdc++-v3/:
PR libstdc++/41220
* include/Makefile.am (CLEANFILES): Add stamp-host.
* include/Makefile.in: Regenerate.
From-SVN: r151351
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/include/Makefile.am | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/Makefile.in | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index dae73ae..b58d086 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2009-09-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + + PR libstdc++/41220 + * include/Makefile.am (CLEANFILES): Add stamp-host. + * include/Makefile.in: Regenerate. + 2009-09-02 Joseph Myers <joseph@codesourcery.com> * testsuite/lib/libstdc++.exp (libstdc++_init): Copy .tcc files diff --git a/libstdc++-v3/include/Makefile.am b/libstdc++-v3/include/Makefile.am index b0fc483..55d0236 100644 --- a/libstdc++-v3/include/Makefile.am +++ b/libstdc++-v3/include/Makefile.am @@ -1223,7 +1223,7 @@ install-headers: $(INSTALL_DATA) $${file} $(DESTDIR)${host_installdir}; done # By adding these files here, automake will remove them for 'make clean' -CLEANFILES = ${pch_output} ${pch_output_anchors} +CLEANFILES = ${pch_output} ${pch_output_anchors} stamp-host # To remove directories. clean-local: diff --git a/libstdc++-v3/include/Makefile.in b/libstdc++-v3/include/Makefile.in index f641d8d..47995ef 100644 --- a/libstdc++-v3/include/Makefile.in +++ b/libstdc++-v3/include/Makefile.in @@ -1098,7 +1098,7 @@ allcreated = \ uppercase = [ABCDEFGHIJKLMNOPQRSTUVWXYZ_] # By adding these files here, automake will remove them for 'make clean' -CLEANFILES = ${pch_output} ${pch_output_anchors} +CLEANFILES = ${pch_output} ${pch_output_anchors} stamp-host all: all-am .SUFFIXES: |