From: Rolf Eike Beer <[email protected]> $ pkg-config --cflags uuid -I/usr/include/uuid
The "uuid/" directory is actually part of the include path. This usually still works because most people have the path one level up in their default include path. Signed-off-by: Rolf Eike Beer <[email protected]> Signed-off-by: Jaegeuk Kim <[email protected]> --- mkfs/f2fs_format.c | 2 +- mkfs/f2fs_format_main.c | 2 +- tools/f2fscrypt.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mkfs/f2fs_format.c b/mkfs/f2fs_format.c index 44575e0..4999cac 100644 --- a/mkfs/f2fs_format.c +++ b/mkfs/f2fs_format.c @@ -18,7 +18,7 @@ #include <sys/mount.h> #endif #include <time.h> -#include <uuid/uuid.h> +#include <uuid.h> #include "f2fs_fs.h" #include "quota.h" diff --git a/mkfs/f2fs_format_main.c b/mkfs/f2fs_format_main.c index 204a410..282c94e 100644 --- a/mkfs/f2fs_format_main.c +++ b/mkfs/f2fs_format_main.c @@ -18,7 +18,7 @@ #include <sys/mount.h> #endif #include <time.h> -#include <uuid/uuid.h> +#include <uuid.h> #include <errno.h> #include "config.h" diff --git a/tools/f2fscrypt.c b/tools/f2fscrypt.c index fe3e0ff..d5bc3c5 100644 --- a/tools/f2fscrypt.c +++ b/tools/f2fscrypt.c @@ -43,7 +43,7 @@ #ifdef __KERNEL__ #include <linux/fs.h> #endif -#include <uuid/uuid.h> +#include <uuid.h> #if !defined(HAVE_ADD_KEY) || !defined(HAVE_KEYCTL) #include <sys/syscall.h> -- 2.27.0.290.gba653c62da-goog _______________________________________________ Linux-f2fs-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
