[openwrt/openwrt] yafut: update to fix basename() issue

LEDE Commits lede-commits at lists.infradead.org
Tue Jun 11 05:27:50 PDT 2024


robimarko pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/b47fbca97f70456db9c7222d9d1b7fb2114ae7ac

commit b47fbca97f70456db9c7222d9d1b7fb2114ae7ac
Author: Robert Marko <robimarko at gmail.com>
AuthorDate: Tue Jun 11 14:08:58 2024 +0200

    yafut: update to fix basename() issue
    
    Since musl 1.2.5 update yafut would throw a warning about implicit
    declaration of basename() but would still somehow compile.
    However, trying to use it on a device will cause it to instantly
    Segmentation fault.
    
    So, to fix this lets update to the current upstream repository version
    that has removed the use of basename() completely.
    
    Link: https://github.com/openwrt/openwrt/pull/15685
    Signed-off-by: Robert Marko <robimarko at gmail.com>
---
 package/utils/yafut/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/utils/yafut/Makefile b/package/utils/yafut/Makefile
index 2907024eb1..1e2ec7bc02 100644
--- a/package/utils/yafut/Makefile
+++ b/package/utils/yafut/Makefile
@@ -5,9 +5,9 @@ PKG_RELEASE:=1
 
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_URL=https://github.com/kempniu/yafut.git
-PKG_MIRROR_HASH:=9cc6b4c485ce16d44b67ebf79e8bee1e07aecde112da739cf33e8714ac3842e7
-PKG_SOURCE_DATE:=2024-05-13
-PKG_SOURCE_VERSION:=2b45baaf1cced47af8f22dd3acbf1df2f04c7510
+PKG_MIRROR_HASH:=7540e977104d41b3aca27b58fda8cd84ebec80cfe01d955712fb8dc717aff6a6
+PKG_SOURCE_DATE:=2024-06-10
+PKG_SOURCE_VERSION:=38439f8a53d33b14744bc8f938662670b9d3e361
 
 PKG_LICENSE:=GPL-2.0
 PKG_LICENSE_FILES:=LICENSE




More information about the lede-commits mailing list