summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRolf Eike Beer <eb@emlix.com>2017-07-10 13:54:24 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2017-07-10 13:59:47 +0200
commit454a3d0b1ac413de3c32e4076ba74fdc70a8e973 (patch)
tree1d4a6c24703ed1e2365ec19e3c8f98336a3b2809
parentdf913e4316f28d60f630bac938863c4c65ad210e (diff)
mkfs-ubifs: fix inclusion of uuid.h
The include directory exported by uuid.pc is */include/uuid, so uuid.h must be included without any directory in the path. This usually works out because uuid is installed in the normal prefix, so the parent directory of what uuid has as include dir ends up in the include path anyway. In case one uses a custom uuid outside of the regular include path this breaks. Signed-off-by: Rolf Eike Beer <eb@emlix.com> Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
-rw-r--r--ubifs-utils/mkfs.ubifs/mkfs.ubifs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ubifs-utils/mkfs.ubifs/mkfs.ubifs.h b/ubifs-utils/mkfs.ubifs/mkfs.ubifs.h
index 944a159..1321191 100644
--- a/ubifs-utils/mkfs.ubifs/mkfs.ubifs.h
+++ b/ubifs-utils/mkfs.ubifs/mkfs.ubifs.h
@@ -43,7 +43,7 @@
#include <errno.h>
#include <libgen.h>
#include <ctype.h>
-#include <uuid/uuid.h>
+#include <uuid.h>
#include <sys/file.h>
#include <mtd/ubifs-media.h>