Skip to content

Commit 3d76e49

Browse files
russkelfabiobaltieri
authored andcommitted
fs: fuse: fix fuse include path
This commit fixes the incorrect include path for the fuse library. pkg_search_module populates the <XXX>_INCLUDE_DIRS cmake var. Signed-off-by: Russ Webber <russ@rw.id.au>
1 parent 4b7e092 commit 3d76e49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/fs/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if(CONFIG_FUSE_FS_ACCESS)
3030
zephyr_library_named(FS_FUSE)
3131
find_package(PkgConfig REQUIRED)
3232
pkg_search_module(FUSE REQUIRED fuse)
33-
zephyr_include_directories(${FUSE_INCLUDE_DIR})
33+
zephyr_include_directories(${FUSE_INCLUDE_DIRS})
3434
if (CONFIG_NATIVE_LIBRARY)
3535
target_link_options(native_simulator INTERFACE "-l${FUSE_LIBRARIES}")
3636
else()

0 commit comments

Comments
 (0)