diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2018-05-22 15:33:25 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2018-05-22 15:33:25 +0000 |
commit | 9901037e429b57893039386fd417ac30b0e579f0 (patch) | |
tree | fe471811d8f823f0af9f96be41028e7972359395 | |
parent | f7cf1fb5cd412c32acb29e75020db127c9162abe (diff) |
Update currency for mpc
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11412 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | lfs-latest.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lfs-latest.php b/lfs-latest.php index 97281c111..90dc3d1bd 100644 --- a/lfs-latest.php +++ b/lfs-latest.php @@ -115,7 +115,7 @@ if ( $package == "flex" ) $dirpath = "https://github.com/westes/flex/relea if ( $package == "gcc" ) $dirpath = max_parent( $dirpath, "gcc-" ); if ( $package == "intltool" ) $dirpath = "https://launchpad.net/intltool/trunk"; if ( $package == "meson" ) $dirpath = "https://github.com/mesonbuild/meson/releases"; -if ( $package == "mpc" ) $dirpath = "http://www.multiprecision.org/mpc/download.html"; +if ( $package == "mpc" ) $dirpath = "https://ftp.gnu.org/gnu/mpc"; if ( $package == "mpfr" ) $dirpath = "http://mpfr.loria.fr/mpfr-current"; if ( $package == "ninja" ) $dirpath = "https://github.com/ninja-build/ninja/releases"; if ( $package == "procps-ng" ) $dirpath = "http://sourceforge.net/projects/procps-ng/files"; @@ -242,9 +242,6 @@ if ( $package == "vim" ) $dirpath = "ftp://ftp.vim.org/pub/vim/unix"; if ( $package == "expect" ) return find_max( $lines, "/expect/", "/^.*expect(\d[\d\.]+\d).tar.*$/" ); - if ( $package == "mpc" ) - return find_max( $lines, "/Version/", "/^.*Version (\d[\d\.]+\d)\\s*$/" ); - if ( $package == "XML-Parser" ) { $max = find_max( $lines, "/$package/", "/^.*$package-([\d\._]*\d).tar.*$/" ); |