diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2018-07-04 20:07:40 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2018-07-04 20:07:40 +0000 |
commit | adcd988063a38da4e61e176228632bc48e2541c8 (patch) | |
tree | c3adbaa839e0694cee87d7ae9513fff2949ccb93 /lfs-latest.php | |
parent | f6528ac86d1a9dc96170011ae98ee0160b28abda (diff) |
Fix currency for attr and acl
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11429 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'lfs-latest.php')
-rw-r--r-- | lfs-latest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lfs-latest.php b/lfs-latest.php index a3200f79e..78244fc51 100644 --- a/lfs-latest.php +++ b/lfs-latest.php @@ -234,7 +234,7 @@ if ( $package == "vim" ) $dirpath = "ftp://ftp.vim.org/pub/vim/unix"; if ( $package == "attr" || $package == "acl" ) { - return find_max( $lines, "/$package/", "/^.*$package-([\d\.-]*\d)\.*$/" ); + return find_max( $lines, "/$package/", "/^.*$package-([\d\.-]*\d).tar.*$/" ); } if ( $package == "e2fsprogs" ) |