diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 0c411a15f7b..10e76175daa 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2001-08-28 Loren J. Rittle + + * include/Makefile.am: Use toplevel_srcdir to refer to src files + outside this component. + * include/Makefile.in: Regenerate. + 2001-08-27 Benjamin Kosnik * config/locale/c_locale_gnu.cc: Move facet info to separate files... diff --git a/libstdc++-v3/include/Makefile.am b/libstdc++-v3/include/Makefile.am index 760fa6e30c9..dfd1215e860 100644 --- a/libstdc++-v3/include/Makefile.am +++ b/libstdc++-v3/include/Makefile.am @@ -21,7 +21,7 @@ ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, ## USA. -## $Id: Makefile.am,v 1.7 2001/08/14 08:42:19 bkoz Exp $ +## $Id: Makefile.am,v 1.8 2001/08/28 06:19:33 bkoz Exp $ AUTOMAKE_OPTIONS = 1.3 gnits MAINT_CHARSET = latin1 @@ -364,18 +364,18 @@ stamp-thread: ${thread_headers} ${thread_builddir} ${thread_builddir}/gthr.h: sed -e '/^#/s/\(${uppercase}${uppercase}*\)/_GLIBCPP_\1/g' \ -e 's,^#include "\(.*\)",#include ,g' \ - < ${glibcpp_srcdir}/../gcc/gthr.h > $@ + < ${toplevel_srcdir}/gcc/gthr.h > $@ ${thread_builddir}/gthr-single.h: sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \ -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \ - < ${glibcpp_srcdir}/../gcc/gthr-single.h > $@ + < ${toplevel_srcdir}/gcc/gthr-single.h > $@ ${thread_builddir}/gthr-default.h: sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \ -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \ -e 's/\(${uppercase}*WEAK\)/_GLIBCPP_\1/g' \ - < ${glibcpp_srcdir}/../gcc/${glibcpp_thread_h} > $@ + < ${toplevel_srcdir}/gcc/${glibcpp_thread_h} > $@ # One big happy istallation: just copy everything from the build to the # install tree (except for the build stamps). diff --git a/libstdc++-v3/include/Makefile.in b/libstdc++-v3/include/Makefile.in index 5eedc43ec64..e025474bcdb 100644 --- a/libstdc++-v3/include/Makefile.in +++ b/libstdc++-v3/include/Makefile.in @@ -385,18 +385,18 @@ stamp-thread: ${thread_headers} ${thread_builddir} ${thread_builddir}/gthr.h: sed -e '/^#/s/\(${uppercase}${uppercase}*\)/_GLIBCPP_\1/g' \ -e 's,^#include "\(.*\)",#include ,g' \ - < ${glibcpp_srcdir}/../gcc/gthr.h > $@ + < ${toplevel_srcdir}/gcc/gthr.h > $@ ${thread_builddir}/gthr-single.h: sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \ -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \ - < ${glibcpp_srcdir}/../gcc/gthr-single.h > $@ + < ${toplevel_srcdir}/gcc/gthr-single.h > $@ ${thread_builddir}/gthr-default.h: sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \ -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \ -e 's/\(${uppercase}*WEAK\)/_GLIBCPP_\1/g' \ - < ${glibcpp_srcdir}/../gcc/${glibcpp_thread_h} > $@ + < ${toplevel_srcdir}/gcc/${glibcpp_thread_h} > $@ install-data-local: for file in `find . ! -name stamp-\* ! -name Makefile -print`; do \ installFile=${gxx_include_dir}/$${file} ;\