diff options
author | Phil Edwards <phil@jaj.com> | 2003-06-06 00:01:32 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2003-06-06 00:01:32 +0000 |
commit | 3d81863273d98ef47994103ca233645c9327b84d (patch) | |
tree | 87118d9902db08d957bc1ae4fe94f2ee86eef9de | |
parent | 0fd2bbf496723e3466d454cbec2e925b5b84b005 (diff) | |
download | gcc-3d81863273d98ef47994103ca233645c9327b84d.zip gcc-3d81863273d98ef47994103ca233645c9327b84d.tar.gz gcc-3d81863273d98ef47994103ca233645c9327b84d.tar.bz2 |
* Makefile.in (qmtest-g++): Use target_alias, not target.
From-SVN: r67520
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a47ffc7..bc34fec 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-06-05 Phil Edwards <phil@jaj.com> + + * Makefile.in (qmtest-g++): Use target_alias, not target. + 2003-06-05 Per Bothner <pbothner@apple.com> * toplev.c (push_srcloc): Simplify behavior to save current location diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 5d87335..f755afd 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3408,7 +3408,7 @@ ${QMTEST_DIR}/context: stamp-qmtest echo "CompilerTable.cplusplus_kind=GCC" >> $@ echo "CompilerTable.cplusplus_path=${objdir}/g++" >> $@ echo "CompilerTable.cplusplus_options=-B${objdir}/" >> $@ - echo "DejaGNUTest.target=$(target)" >> $@ + echo "DejaGNUTest.target=${target_alias}" >> $@ # Run the G++ testsuite using QMTest. qmtest-g++: ${QMTEST_DIR}/context |