blob: 0b7c063804fe9a40498d9b2338c86112f7c3d47b [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From d2d05928342f7f9f687ffea5e0b77f97f0ae5aad Mon Sep 17 00:00:00 2001
2From: Wang Mingyu <wangmy@fujitsu.com>
3Date: Wed, 7 Sep 2022 14:29:13 +0900
4Subject: [PATCH] Modify include dir
5
6error messagge:
7../../xforms-1.2.4/lib/fd/cmdbr.h:28:10: fatal error: ../include/forms.h: No such file or directory
8
9../include/forms.h specified in the header file cmdbr.h is not exist.
10
11Upstream-Status: Pending
12
13Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
14---
15 lib/fd/cmdbr.h | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/lib/fd/cmdbr.h b/lib/fd/cmdbr.h
19index 8495e05..2ddeced 100644
20--- a/lib/fd/cmdbr.h
21+++ b/lib/fd/cmdbr.h
22@@ -25,7 +25,7 @@
23 #ifndef FD_cmd_h_
24 #define FD_cmd_h_
25
26-#include "../include/forms.h"
27+#include "include/forms.h"
28
29 /* Callbacks, globals and object handlers */
30
31--
322.25.1
33