mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
comp_libs: Fix download locations for cloog and mpc
This change closes #62 Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
This commit is contained in:
parent
0f372b8357
commit
7365281973
@ -24,7 +24,8 @@ if [ "${CT_CLOOG}" = "y" ]; then
|
|||||||
# Download CLooG
|
# Download CLooG
|
||||||
do_cloog_get() {
|
do_cloog_get() {
|
||||||
CT_GetFile "$(cloog_basename_version)" \
|
CT_GetFile "$(cloog_basename_version)" \
|
||||||
http://www.bastoul.net/cloog/pages/download
|
http://www.bastoul.net/cloog/pages/download \
|
||||||
|
ftp://gcc.gnu.org/pub/gcc/infrastructure
|
||||||
}
|
}
|
||||||
|
|
||||||
# Extract CLooG
|
# Extract CLooG
|
||||||
|
@ -13,7 +13,8 @@ if [ "${CT_MPC}" = "y" ]; then
|
|||||||
# Download MPC
|
# Download MPC
|
||||||
do_mpc_get() {
|
do_mpc_get() {
|
||||||
CT_GetFile "mpc-${CT_MPC_VERSION}" .tar.gz \
|
CT_GetFile "mpc-${CT_MPC_VERSION}" .tar.gz \
|
||||||
{http,ftp,https}://ftp.gnu.org/gnu/mpc
|
{http,ftp,https}://ftp.gnu.org/gnu/mpc \
|
||||||
|
http://www.multiprecision.org/mpc/download
|
||||||
}
|
}
|
||||||
|
|
||||||
# Extract MPC
|
# Extract MPC
|
||||||
|
Loading…
Reference in New Issue
Block a user