diff options
Diffstat (limited to 'util')
-rwxr-xr-x | util/crossgcc/buildgcc | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 3ebde85892..9239b5dae6 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -534,7 +534,7 @@ build_MPFR() { # work around build problem of libgmp.la if [ "$DESTDIR" != "" ]; then - perl -pi -e "s,$DESTDIR,," $DESTDIR$TARGETDIR/libgmp.la + perl -pi -e "s,$DESTDIR,," $DESTDIR$TARGETDIR/lib/libgmp.la fi } @@ -543,9 +543,20 @@ build_MPC() { --infodir=$TARGETDIR/info --with-mpfr=$DESTDIR$TARGETDIR \ --with-gmp=$DESTDIR$TARGETDIR CFLAGS="$HOSTCFLAGS" || \ touch .failed + + # work around build problem of libmpfr.la + if [ "$DESTDIR" != "" ]; then + perl -pi -e "s,$TARGETDIR/lib/libgmp.la,$DESTDIR\$&," $DESTDIR$TARGETDIR/lib/libmpfr.la + fi + $MAKE $JOBS || touch .failed $MAKE install DESTDIR=$DESTDIR || touch .failed + # work around build problem of libmpfr.la + if [ "$DESTDIR" != "" ]; then + perl -pi -e "s,$DESTDIR,," $DESTDIR$TARGETDIR/lib/libmpfr.la + fi + normalize_dirs } |