diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2022-09-20 11:16:15 -0500 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2022-09-20 11:16:15 -0500 |
commit | cc8e57dc7ad8dd6acc35b050fbd2a92c352bb9e8 (patch) | |
tree | 26a2c775c921f6ee922af2b151de054dcdc7ca1e /lfs-latest-git.php | |
parent | 670f55f539280f711c945abac95f603ae9bcf876 (diff) |
Update currency for libffi
Diffstat (limited to 'lfs-latest-git.php')
-rw-r--r-- | lfs-latest-git.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lfs-latest-git.php b/lfs-latest-git.php index 5dda8476c..3f7a9cbf5 100644 --- a/lfs-latest-git.php +++ b/lfs-latest-git.php @@ -300,6 +300,9 @@ if ( $package == "zstd" ) $dirpath = "https://github.com/facebook/zstd/rel $max = find_max( $lines, "/FILE5/", "/^.*FILE(5_\d+)*$/" ); return str_replace( "_", ".", $max ); } +print_r($lines); + if ( $package == "libffi" ) + return find_max( $lines, "/v\d/", "/^.*v([\d\.]+)$/" ); if ( $package == "procps-ng" ) return find_max( $lines, "/v\d/", "/^.*v([\d\.]+)$/" ); |