This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
QMTest patch broke bootstrap in objdir with colon in name
- From: Rainer Orth <ro at TechFak dot Uni-Bielefeld dot DE>
- To: Mark Mitchell <mitchell at codesourcery dot com>
- Cc: gcc-bugs at gcc dot gnu dot org
- Date: Wed, 19 Jun 2002 00:38:16 +0200 (MEST)
- Subject: QMTest patch broke bootstrap in objdir with colon in name
Mark,
I just noticed that this patch
2002-05-19 Mark Mitchell <mitchell@doubledemon.codesourcery.com>
* Makefile.in (distclean): Remove QMTest stuff.
(QMTEST_PATH): New variable.
(QMTESTFLAGS): Likewise.
(QMTESTRUNFLAGS): Likewise.
(QMTEST): Likewise.
(QMTEST_GPP_TESTS): Likewise.
(QMTEST_DIR): Likewise.
(QMTEST_DIR/context): New target.
(qmtest-g++): Likeise.
(qmtest-gui): Likewise.
(QMTEST_DIR/gpp-expected.qmr): Likewise.
broke bootstrap if the objdir contains a colon in it's name: GNU make 3.79
complains:
Makefile:3121: *** multiple target patterns. Stop.
where line 3121 is
QMTEST_DIR=${objdir}/qmtestsuite
As a quick hack, I've removed the ${objdir}/ part from the generated
Makefile to allow the bootstrap to continue. This may even be the correct
fix.
Rainer