From: Loren J. Rittle Date: Fri, 10 Aug 2001 20:44:53 +0000 (+0000) Subject: Makefile.am: Use relative file path in rule to allow colon in $(objdir). X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ff14442814586de3a69dd485845cbfeac0743e07;p=gcc.git Makefile.am: Use relative file path in rule to allow colon in $(objdir). bootstrap/3963 * include/Makefile.am: Use relative file path in rule to allow colon in $(objdir). * include/Makefile.in: Rebuilt. From-SVN: r44776 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index ae0689e7b77..6d624132240 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -3,6 +3,11 @@ * testsuite/testsuite_hooks.h (__set_testsuite_memlimit): Add dummy default argument to the non-limit implementation. + bootstrap/3963 + * include/Makefile.am: Use relative file path in rule to allow + colon in $(objdir). + * include/Makefile.in: Rebuilt. + 2001-08-10 Gunter Winkler gunter.winkler@mathematik.tu-chemnitz.de * include/bits/std_complex.h (complex::operator*=, diff --git a/libstdc++-v3/include/Makefile.am b/libstdc++-v3/include/Makefile.am index 91931d3d719..f5ceb08190e 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.2 2001/08/08 02:48:59 bkoz Exp $ +## $Id: Makefile.am,v 1.3 2001/08/10 15:47:21 gdr Exp $ AUTOMAKE_OPTIONS = 1.3 gnits MAINT_CHARSET = latin1 @@ -391,7 +391,7 @@ stamp-${target_alias}: fi echo `date` > stamp-${target_alias} -${target_builddir}/c++config.h: ${glibcpp_builddir}/config.h \ +${target_builddir}/c++config.h: ../config.h \ ${glibcpp_srcdir}/include/bits/c++config \ ${target_builddir} @cat ${glibcpp_srcdir}/include/bits/c++config > $@ ;\ diff --git a/libstdc++-v3/include/Makefile.in b/libstdc++-v3/include/Makefile.in index bf72ef58fe5..b010d072199 100644 --- a/libstdc++-v3/include/Makefile.in +++ b/libstdc++-v3/include/Makefile.in @@ -393,7 +393,7 @@ stamp-${target_alias}: fi echo `date` > stamp-${target_alias} -${target_builddir}/c++config.h: ${glibcpp_builddir}/config.h \ +${target_builddir}/c++config.h: ../config.h \ ${glibcpp_srcdir}/include/bits/c++config \ ${target_builddir} @cat ${glibcpp_srcdir}/include/bits/c++config > $@ ;\