diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2001-01-11 07:27:50 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2001-01-11 07:27:50 +0000 |
commit | 752808fb4370a868cfba07d25f18f00916d0797c (patch) | |
tree | a930f135f45e53d4fe70a7db3d183d9f0cc3b0c8 /libstdc++-v3/src/Makefile.am | |
parent | 792508b58b76950b1b349aa68e95aa0e49f3cf14 (diff) | |
download | gcc-752808fb4370a868cfba07d25f18f00916d0797c.zip gcc-752808fb4370a868cfba07d25f18f00916d0797c.tar.gz gcc-752808fb4370a868cfba07d25f18f00916d0797c.tar.bz2 |
ios.cc: Fix typo: change cout->wcout.
2001-01-10 Benjamin Kosnik <bkoz@redhat.com>
* src/ios.cc: Fix typo: change cout->wcout.
* src/Makefile.am (targetincludep): Fix for version-specific-libs.
* src/Makefile.in: Regenerate.
From-SVN: r38895
Diffstat (limited to 'libstdc++-v3/src/Makefile.am')
-rw-r--r-- | libstdc++-v3/src/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libstdc++-v3/src/Makefile.am b/libstdc++-v3/src/Makefile.am index a6e15d1..b66c6ee6 100644 --- a/libstdc++-v3/src/Makefile.am +++ b/libstdc++-v3/src/Makefile.am @@ -21,7 +21,7 @@ ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, ## USA. -## $Id: Makefile.am,v 1.62 2001/01/04 04:21:42 bkoz Exp $ +## $Id: Makefile.am,v 1.63 2001/01/10 17:24:11 bkoz Exp $ AUTOMAKE_OPTIONS = 1.3 gnits MAINT_CHARSET = latin1 @@ -225,16 +225,17 @@ $(top_builddir)/stamp-cshadow: $(top_srcdir)/mkinclosure \ # Check for various configure bits that change where the headers get installed. if GXX_INCLUDE_DIR myincludep = @gxx_include_dir@ +targetincludep = @gxx_include_dir@ else if VERSION_SPECIFIC_LIBS myincludep = $(libdir)/gcc-lib/$(target_alias)/@gcc_version@/include/g++ +targetincludep = $(libdir)/gcc-lib/$(target_alias)/@gcc_version@/include/g++ else myincludep = $(prefix)/include/g++-@libstdcxx_interface@ +targetincludep = @gxx_target_include_dir@ endif endif -targetincludep = @gxx_target_include_dir@ - # We have our own special, ridiculously complicated installation routine # here, as automake/autoconf is currently brain-damaged when it comes # to installing sub-directories of headers. In particular, we want to |