aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRolf Eike Beer <eb@emlix.com>2020-06-12 10:12:24 +0200
committerJaegeuk Kim <jaegeuk@kernel.org>2020-06-18 12:34:13 -0700
commit1ceb06bfcc4f8ff51e7effed66c454cf7b43b39d (patch)
tree82c69b41ae1ae48bfb1697d34b6538889b1cc888
parent59a37413f81295af90e983e7ed562eaa53b4141c (diff)
downloadf2fs-tools-1ceb06bfcc4f8ff51e7effed66c454cf7b43b39d.tar.gz
lib: fix include path for blkid.h
$ pkg-config --cflags blkid -I/usr/include/blkid The "blkid/" 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 <eb@emlix.com> Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
-rw-r--r--mkfs/f2fs_format_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkfs/f2fs_format_main.c b/mkfs/f2fs_format_main.c
index 282c94e..3d86c44 100644
--- a/mkfs/f2fs_format_main.c
+++ b/mkfs/f2fs_format_main.c
@@ -23,7 +23,7 @@
#include "config.h"
#ifdef HAVE_LIBBLKID
-# include <blkid/blkid.h>
+# include <blkid.h>
#endif
#include "f2fs_fs.h"