diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2021-08-08 11:11:20 -0500 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2021-08-08 11:11:20 -0500 |
commit | 3c9fe9ad67705f70bfa9554ab503c9218a0b73ee (patch) | |
tree | bd5f14556b8122e58f39b77e484fcfdcb593ce97 | |
parent | 660d70a0d41fd04b59191c9370fae15c9f5e3028 (diff) |
Fix currency for libffi
-rw-r--r-- | lfs-latest-git.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lfs-latest-git.php b/lfs-latest-git.php index 29633c212..6130d48d1 100644 --- a/lfs-latest-git.php +++ b/lfs-latest-git.php @@ -119,6 +119,7 @@ if ( $package == "flex" ) $dirpath = "https://github.com/westes/flex/relea if ( $package == "gcc" ) $dirpath = max_parent( $dirpath, "gcc-" ); if ( $package == "iana-etc" ) $dirpath = "https://github.com/Mic92/iana-etc/releases"; if ( $package == "intltool" ) $dirpath = "https://launchpad.net/intltool/trunk"; +if ( $package == "libffi" ) $dirpath = "https://github.com/libffi/libffi/releases"; if ( $package == "meson" ) $dirpath = "https://github.com/mesonbuild/meson/releases"; if ( $package == "mpc" ) $dirpath = "https://ftp.gnu.org/gnu/mpc"; if ( $package == "mpfr" ) $dirpath = "http://mpfr.loria.fr/mpfr-current"; |