diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2003-04-12 06:22:52 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2003-04-12 06:22:52 +0000 |
commit | 9e6ccb985d19dd23786c673dc7f8372e41cceea5 (patch) | |
tree | 3ce78c0dc7a99edfa8c830bc87dcc9dc45bcdde0 | |
parent | 0aaafe734924677ec21c8bf7b80efff3717226ca (diff) | |
download | gcc-9e6ccb985d19dd23786c673dc7f8372e41cceea5.zip gcc-9e6ccb985d19dd23786c673dc7f8372e41cceea5.tar.gz gcc-9e6ccb985d19dd23786c673dc7f8372e41cceea5.tar.bz2 |
mklibgcc.in (libgcc-stage-start): Move into the stage directory object files from the non-libgcc/ multilib...
* mklibgcc.in (libgcc-stage-start): Move into the stage directory
object files from the non-libgcc/ multilib directories as well.
From-SVN: r65503
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/mklibgcc.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a1bcab9..4c8a5b0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-04-12 Alexandre Oliva <aoliva@redhat.com> + + * mklibgcc.in (libgcc-stage-start): Move into the stage directory + object files from the non-libgcc/ multilib directories as well. + 2003-04-11 Geoffrey Keating <geoffk@apple.com> * profile.c (read_counts_file): Initialise 'checksum'. diff --git a/gcc/mklibgcc.in b/gcc/mklibgcc.in index 1abb3a0..619f101 100644 --- a/gcc/mklibgcc.in +++ b/gcc/mklibgcc.in @@ -420,7 +420,7 @@ dirs=libgcc for ml in $MULTILIBS; do dir=`echo ${ml} | sed -e 's/;.*$//' -e 's/=/$(EQ)/g'` if [ $dir != . ]; then - dirs="$dirs libgcc/${dir}" + dirs="$dirs ${dir} libgcc/${dir}" fi done echo '' |