From b7831af74d795d9a7530d2a873072581927fce53 Mon Sep 17 00:00:00 2001 From: Integral Date: Sat, 26 Oct 2024 22:18:31 +0800 Subject: [PATCH] bcachefs-tools: fix in fuse feature in RUSTFLAGS Currently, when "BCACHEFS_FUSE=1" is set, fusemount subcommand still cannot be identified. Change RUSTFLAGS in Makefile to fix this problem. Signed-off-by: Integral Signed-off-by: Kent Overstreet --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c14db58d..1fae1f5b 100644 --- a/Makefile +++ b/Makefile @@ -79,7 +79,7 @@ PKGCONFIG_LIBS="blkid uuid liburcu libsodium zlib liblz4 libzstd libudev libkeyu ifdef BCACHEFS_FUSE PKGCONFIG_LIBS+="fuse3 >= 3.7" CFLAGS+=-DBCACHEFS_FUSE - RUSTFLAGS+=--cfg fuse + RUSTFLAGS+=--cfg feature="fuse" endif PKGCONFIG_CFLAGS:=$(shell $(PKG_CONFIG) --cflags $(PKGCONFIG_LIBS))