Skip to content

Typo in file checking was downloading mpfr multiple times. #44

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 5, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions gcc.build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fi

tar xfv gmp-${GMP_VERSION}.tar.bz2

if [[ ! -f mpfr-${GMPFR_VERSION}.tar.bz2 ]] ;
if [[ ! -f mpfr-${MPFR_VERSION}.tar.bz2 ]] ;
then
wget ${MPFR_SOURCE}
fi
Expand Down Expand Up @@ -72,9 +72,9 @@ autoconf
popd
popd

mv gmp-5.0.2 gcc/gmp
mv mpfr-3.0.0 gcc/mpfr
mv mpc-0.9 gcc/mpc
mv gmp-${GMP_VERSION} gcc/gmp
mv mpfr-${MPFR_VERSION} gcc/mpfr
mv mpc-${MPC_VERSION} gcc/mpc

mkdir -p objdir
cd objdir
Expand Down