This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: bootstrap failure with colons in objdir
- To: Benjamin Kosnik <bkoz at redhat dot com>
- Subject: Re: bootstrap failure with colons in objdir
- From: Gerald Pfeifer <pfeifer at dbai dot tuwien dot ac dot at>
- Date: Mon, 30 Jul 2001 17:48:47 +0200 (CEST)
- cc: <libstdc++ at gcc dot gnu dot org>, <gcc-bugs at gcc dot gnu dot org>
On Mon, 30 Jul 2001, Benjamin Kosnik wrote:
>> Making all in include
>> gmake[4]: Entering directory `/files/pfeifer/OBJ:NOW/i386-unknown-freebsd4.3/libstdc++-v3/include'
>> Makefile:367: *** target pattern contains no `%'. Stop.
> Hey Gerald. The include/Makefile bits are a recent development, thus the
> reason for the new breakage. Perhaps you can post the line in the
> generated Makefile that is causing the error, with some context?
Of course. I'd better done this in my first mail already -- this is what
you get juggling too many things at once. Sorry!
367 ${target_builddir}/c++config.h: ${glibcpp_builddir}/config.h \
368 ${glibcpp_srcdir}/include/bits/c++config \
369 ${target_builddir}
370 @cat ${glibcpp_srcdir}/include/bits/c++config > $@ ;\
371 sed -e 's/HAVE_/_GLIBCPP_HAVE_/g' \
372 -e 's/PACKAGE/_GLIBCPP_PACKAGE/g' \
373 -e 's/VERSION/_GLIBCPP_VERSION/g' \
374 -e 's/WORDS_/_GLIBCPP_WORDS_/g' \
375 < ${glibcpp_builddir}/config.h >> $@ ;\
376 echo "#endif // _CPP_CPPCONFIG_" >>$@
> It's probably just a simple quoting issue.
Hopefully! :-)
Gerald