diff options
author | Integral <integral@archlinuxcn.org> | 2024-10-26 22:18:31 +0800 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2024-10-27 16:15:00 -0400 |
commit | b7831af74d795d9a7530d2a873072581927fce53 (patch) | |
tree | aff34f7eb3e1b00b2c2dc2a6a64463540293c850 | |
parent | 64767d6443e242749b6cc5e914d67b184bddc2df (diff) |
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 <integral@archlinuxcn.org>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) |