1From affaa2021a54c30353e4e1fee09c13a4de2196be Mon Sep 17 00:00:00 2001
2From: Jussi Kukkonen <jussi.kukkonen@intel.com>
3Date: Fri, 17 Mar 2017 14:24:29 +0200
4Subject: [PATCH] Add header dependency to nciattach.o
5
6This can happen when compiling nciattach.o:
7
8| In file included from ../neard-0.16/tools/nciattach.c:47:0:
9| ../neard-0.16/src/near.h:30:27: fatal error: near/nfc_copy.h: No such
10file or directory
11|  #include <near/nfc_copy.h>
12
13Add the missing dependency to local headers.
14
15Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
16Upstream-Status: Submitted [mailinglist]
17---
18 Makefile.am | 1 +
19 1 file changed, 1 insertion(+)
20
21diff --git a/Makefile.am b/Makefile.am
22index fa552ee..acef6ba 100644
23--- a/Makefile.am
24+++ b/Makefile.am
25@@ -253,6 +253,7 @@ se/builtin.h: src/genbuiltin $(builtin_se_sources)
26
27 $(src_neard_OBJECTS) \
28 $(tools_nfctool_nfctool_OBJECTS) \
29+$(tools_nciattach_OBJECTS) \
30 $(plugin_objects) \
31 $(se_seeld_OBJECTS) \
32 $(unit_test_ndef_parse_OBJECTS) \
33--
342.11.0
35
36