From fbd223942e59d820d26976da2639522db0a1b129 Mon Sep 17 00:00:00 2001 From: Alexander Egorenkov Date: Wed, 11 May 2022 12:36:29 +0200 Subject: [PATCH] package/s390-tools: drop fuse2 support and replace it with fuse3 s390-tools dropped FUSE2 support since v2.20. It has been replaced with FUSE3. Fixes: - http://autobuild.buildroot.net/results/e12bace34870a33b68eb5759cece051aaaf5c1f9 References: - https://github.com/ibm-s390-linux/s390-tools/pull/117 - https://github.com/ibm-s390-linux/s390-tools/issues/116 Signed-off-by: Alexander Egorenkov Signed-off-by: Peter Korsgaard --- package/s390-tools/s390-tools.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/s390-tools/s390-tools.mk b/package/s390-tools/s390-tools.mk index 040db78c05..f381100792 100644 --- a/package/s390-tools/s390-tools.mk +++ b/package/s390-tools/s390-tools.mk @@ -77,8 +77,8 @@ else S390_TOOLS_MAKE_OPTS += HAVE_PFM=0 endif -ifeq ($(BR2_PACKAGE_LIBFUSE),y) -S390_TOOLS_DEPENDENCIES += libfuse +ifeq ($(BR2_PACKAGE_LIBFUSE3),y) +S390_TOOLS_DEPENDENCIES += libfuse3 S390_TOOLS_MAKE_OPTS += HAVE_FUSE=1 else S390_TOOLS_MAKE_OPTS += HAVE_FUSE=0