From e0e7eb08d5d28a952221070a4b50794d63dcc625 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Thu, 21 Dec 2017 12:05:06 -0200 Subject: [PATCH] monitor: Fix out of the tree build When building outside the tree including uuid.h may not be found: ../monitor/packet.c:52:18: fatal error: uuid.h: No such file or directory --- monitor/packet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/packet.c b/monitor/packet.c index bd28ec4a5..b800a2d75 100644 --- a/monitor/packet.c +++ b/monitor/packet.c @@ -39,6 +39,7 @@ #include #include "lib/bluetooth.h" +#include "lib/uuid.h" #include "lib/hci.h" #include "lib/hci_lib.h" @@ -49,7 +50,6 @@ #include "ll.h" #include "hwdb.h" #include "keys.h" -#include "uuid.h" #include "l2cap.h" #include "control.h" #include "vendor.h" -- 2.47.3