blob: 7279d84a5d18d606940d592ddba5ef9ff5709b9e [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From ad6ca4f392bf549239b1ed3b2b372070eb127e7f Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Wed, 11 Jul 2018 11:06:04 +0800
4Subject: [PATCH] Makefile.am: fix sfcbinst2mof_DEPENDENCIES
5
6Fixed build with automake 1.16.1:
7/path/to/i586-poky-linux/8.1.0/ld: cannot find -lsfcBrokerCore
8collect2: error: ld returned 1 exit status
9
10Upstream-Status: Pending
11
12Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
13---
14 Makefile.am | 1 +
15 1 file changed, 1 insertion(+)
16
17diff --git a/Makefile.am b/Makefile.am
18index 34ac319..47deed7 100644
19--- a/Makefile.am
20+++ b/Makefile.am
21@@ -360,6 +360,7 @@ sfcbproc_SOURCES=sfcbproc.c
22
23 sfcbinst2mof_SOURCES=sfcbinst2mof.c
24 sfcbinst2mof_LDADD = -lsfcFileRepository -lsfcBrokerCore
25+sfcbinst2mof_DEPENDENCIES = libsfcBrokerCore.la libsfcFileRepository.la
26
27 sfcbtrace_SOURCES=sfcbtrace.c
28 sfcbtrace_LDADD = -lsfcBrokerCore
29--
302.7.4
31