diff options
author | Geoff Keating <geoffk@cygnus.com> | 2000-08-13 20:44:50 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2000-08-13 20:44:50 +0000 |
commit | acffa7c4f866e1bd59e0483c8bd88fb3843ffcc8 (patch) | |
tree | 4acb3c0d5c331b775ae9d714f62808bd0238af39 | |
parent | a0e263a33c6aa5b88365d092d22435038ed65f94 (diff) | |
download | gcc-acffa7c4f866e1bd59e0483c8bd88fb3843ffcc8.zip gcc-acffa7c4f866e1bd59e0483c8bd88fb3843ffcc8.tar.gz gcc-acffa7c4f866e1bd59e0483c8bd88fb3843ffcc8.tar.bz2 |
* Makefile.in (GCC_FOR_TARGET): Also add -B$$r/gcc/ here.
From-SVN: r35665
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2000-08-13 Geoff Keating <geoffk@cygnus.com> + + * Makefile.in (GCC_FOR_TARGET): Also add -B$$r/gcc/ here. + 2000-08-12 Alexandre Oliva <aoliva@redhat.com> * config-ml.in (CC): Remove bogus duplicate quotation mark from diff --git a/Makefile.in b/Makefile.in index a799be6..f85814d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -220,7 +220,7 @@ CXX_FOR_TARGET = # variable is passed down to the gcc Makefile, where it is used to # build libgcc2.a. We define it here so that it can itself be # overridden on the command line. -GCC_FOR_TARGET = $$r/gcc/xgcc $(FLAGS_FOR_TARGET) +GCC_FOR_TARGET = $$r/gcc/xgcc -B$$r/gcc/ $(FLAGS_FOR_TARGET) AS_FOR_TARGET = ` \ if [ -f $$r/gas/as-new ] ; then \ |