Commit 73249e33 by Loren J. Rittle Committed by Loren J. Rittle

Makefile.am (c_base_builddir): Remove redundant slash.

	* include/Makefile.am (c_base_builddir): Remove redundant slash.
	(std_builddir): Likewise.
	(std_headers_rename): Fix cut-n-paste typo.
	(install-data-local): Concat path per element instead of once to
	first element of list.
	* include/Makefile.in: Rebuilt.

From-SVN: r49081
parent 4b02997f
2002-01-22 Loren Rittle <ljrittle@acm.org>
* include/Makefile.am (c_base_builddir): Remove redundant slash.
(std_builddir): Likewise.
(std_headers_rename): Fix cut-n-paste typo.
(install-data-local): Concat path per element instead of once to
first element of list.
* include/Makefile.in: Rebuilt.
2002-01-22 Benjamin Kosnik <bkoz@redhat.com> 2002-01-22 Benjamin Kosnik <bkoz@redhat.com>
* config/os/aix/bits/ctype_noninline.h: Fix formatting. * config/os/aix/bits/ctype_noninline.h: Fix formatting.
......
...@@ -160,7 +160,7 @@ ext_headers = \ ...@@ -160,7 +160,7 @@ ext_headers = \
# This is the common subset of files that all three "C" header models use. # This is the common subset of files that all three "C" header models use.
c_base_srcdir = @C_INCLUDE_DIR@ c_base_srcdir = @C_INCLUDE_DIR@
c_base_builddir = ./ c_base_builddir = .
c_base_headers = \ c_base_headers = \
${c_base_srcdir}/std_cassert.h \ ${c_base_srcdir}/std_cassert.h \
${c_base_srcdir}/std_cctype.h \ ${c_base_srcdir}/std_cctype.h \
...@@ -204,7 +204,7 @@ c_base_headers_rename = \ ...@@ -204,7 +204,7 @@ c_base_headers_rename = \
cwctype cwctype
std_srcdir = ${glibcpp_srcdir}/include/std std_srcdir = ${glibcpp_srcdir}/include/std
std_builddir = ./ std_builddir = .
std_headers = \ std_headers = \
${std_srcdir}/std_algorithm.h \ ${std_srcdir}/std_algorithm.h \
${std_srcdir}/std_bitset.h \ ${std_srcdir}/std_bitset.h \
...@@ -256,7 +256,7 @@ std_headers_rename = \ ...@@ -256,7 +256,7 @@ std_headers_rename = \
memory \ memory \
numeric \ numeric \
ostream \ ostream \
${std_builddir}/queue \ queue \
set \ set \
sstream \ sstream \
stack \ stack \
...@@ -425,13 +425,15 @@ install-data-local: ...@@ -425,13 +425,15 @@ install-data-local:
for file in ${ext_headers}; do \ for file in ${ext_headers}; do \
$(INSTALL_DATA) $${file} ${gxx_include_dir}/${ext_builddir}; done $(INSTALL_DATA) $${file} ${gxx_include_dir}/${ext_builddir}; done
$(INSTALL) -d ${gxx_include_dir}/${c_base_builddir} $(INSTALL) -d ${gxx_include_dir}/${c_base_builddir}
for file in ${c_base_builddir}/${c_base_headers_rename}; do \ for file in ${c_base_headers_rename}; do \
$(INSTALL_DATA) $${file} ${gxx_include_dir}/${c_base_builddir}; done $(INSTALL_DATA) ${c_base_builddir}/$${file} \
${gxx_include_dir}/${c_base_builddir}; done
for file in ${c_base_headers_extra}; do \ for file in ${c_base_headers_extra}; do \
$(INSTALL_DATA) $${file} ${gxx_include_dir}/${c_base_builddir}; done $(INSTALL_DATA) $${file} ${gxx_include_dir}/${c_base_builddir}; done
$(INSTALL) -d ${gxx_include_dir}/${std_builddir} $(INSTALL) -d ${gxx_include_dir}/${std_builddir}
for file in ${std_builddir}/${std_headers_rename}; do \ for file in ${std_headers_rename}; do \
$(INSTALL_DATA) $${file} ${gxx_include_dir}/${std_builddir}; done $(INSTALL_DATA) ${std_builddir}/$${file} \
${gxx_include_dir}/${std_builddir}; done
$(INSTALL) -d ${gxx_include_dir}/${target_builddir} $(INSTALL) -d ${gxx_include_dir}/${target_builddir}
for file in ${target_headers} ${extra_target_headers}; do \ for file in ${target_headers} ${extra_target_headers}; do \
$(INSTALL_DATA) $${file} ${gxx_include_dir}/${target_builddir}; done $(INSTALL_DATA) $${file} ${gxx_include_dir}/${target_builddir}; done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment