diff options
author | Doug Kwan <dougkwan@google.com> | 2011-03-15 20:56:52 +0000 |
---|---|---|
committer | Doug Kwan <dougkwan@gcc.gnu.org> | 2011-03-15 20:56:52 +0000 |
commit | 38b8f67a6d9306eb5fd1f04ad77347cf8cb1561c (patch) | |
tree | 729cf1e0b6a3733fa655d1edb0a05507baa64f27 /libstdc++-v3/include/Makefile.in | |
parent | 3b0f203438665e5032d6f4d56dd2c60a41a1061f (diff) | |
download | gcc-38b8f67a6d9306eb5fd1f04ad77347cf8cb1561c.tar.gz |
re PR libstdc++/48123 (bits/cpu_defines.h not installed in freestanding mode.)
2011-03-15 Doug Kwan <dougkwan@google.com>
PR libstdc++/48123
* include/Makefile.am (install-freestanding-headers): Install
cpu_defines.h
* include/Makefile.in: Regenerate.
From-SVN: r171019
Diffstat (limited to 'libstdc++-v3/include/Makefile.in')
-rw-r--r-- | libstdc++-v3/include/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libstdc++-v3/include/Makefile.in b/libstdc++-v3/include/Makefile.in index e853284a157..01e593d1c31 100644 --- a/libstdc++-v3/include/Makefile.in +++ b/libstdc++-v3/include/Makefile.in @@ -1584,7 +1584,8 @@ ${pch3_output}: ${pch3_source} ${pch2_output} install-freestanding-headers: $(mkinstalldirs) $(DESTDIR)${gxx_include_dir} $(mkinstalldirs) $(DESTDIR)${host_installdir} - for file in ${host_srcdir}/os_defines.h ${host_builddir}/c++config.h; do \ + for file in ${host_srcdir}/os_defines.h ${host_builddir}/c++config.h \ + ${glibcxx_srcdir}/$(CPU_DEFINES_SRCDIR)/cpu_defines.h; do \ $(INSTALL_DATA) $${file} $(DESTDIR)${host_installdir}; done $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${std_builddir} $(INSTALL_DATA) ${std_builddir}/limits $(DESTDIR)${gxx_include_dir}/${std_builddir} |