diff options
author | Chris Demetriou <cgd@broadcom.com> | 2001-01-23 19:18:29 +0000 |
---|---|---|
committer | Chris Demetriou <cgd@gcc.gnu.org> | 2001-01-23 11:18:29 -0800 |
commit | c8f33f223b001f8d1bff29ce9920e45ea7400c29 (patch) | |
tree | 8692a7e8e7d85ebab04edc70f60191d2f62f4218 /libstdc++-v3/configure.in | |
parent | 3fb74b82af789028cbff2b1a0eb614d6cde30630 (diff) | |
download | gcc-c8f33f223b001f8d1bff29ce9920e45ea7400c29.zip gcc-c8f33f223b001f8d1bff29ce9920e45ea7400c29.tar.gz gcc-c8f33f223b001f8d1bff29ce9920e45ea7400c29.tar.bz2 |
configure.in: Place definition of MULTISUBDIR in libsupc++/Makefile as is done for src/Makefile.
2001-01-23 Chris Demetriou <cgd@broadcom.com>
* configure.in: Place definition of MULTISUBDIR in
libsupc++/Makefile as is done for src/Makefile.
* configure: Regenerate.
From-SVN: r39205
Diffstat (limited to 'libstdc++-v3/configure.in')
-rw-r--r-- | libstdc++-v3/configure.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libstdc++-v3/configure.in b/libstdc++-v3/configure.in index 8e828a7..b751fc3 100644 --- a/libstdc++-v3/configure.in +++ b/libstdc++-v3/configure.in @@ -297,14 +297,15 @@ if test ! -d "$blddir/include"; then fi # NB: Multilibs need MULTISUBDIR defined correctly in src/Makefile.am -# so that multilib installs will end up installed in the correct -# place. To work around this not being passed down from config-ml.in -# -> top_srcdir/Makefile.am -> top_srcdir/src/Makefile.am, manually -# append it here. +# and libsupc++/Makefile.am so that multilib installs will end up +# installed in the correct place. To work around this not being passed +# down from config-ml.in -> top_srcdir/Makefile.am -> +# top_srcdir/{src,libsupc++}/Makefile.am, manually append it here. AC_OUTPUT(tests_flags mkcheck Makefile src/Makefile libmath/Makefile libio/Makefile libsupc++/Makefile, [if test -n "$CONFIG_FILES"; then ac_file=Makefile . ${glibcpp_basedir}/../config-ml.in grep '^MULTISUBDIR =' Makefile >> src/Makefile + grep '^MULTISUBDIR =' Makefile >> libsupc++/Makefile fi chmod +x tests_flags chmod +x mkcheck |