Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1 | Fix ipmi plugin's test dir compilation |
| 2 | |
| 3 | The ipmi plugin's test dir is not included |
| 4 | in compilation since it does not compile |
| 5 | properly with SSL |
| 6 | |
| 7 | Signed-of-by: Aws Ismail <aws.ismail@windriver.com> |
| 8 | |
| 9 | Upstream-Status: Pending |
| 10 | |
| 11 | Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> |
| 12 | --- |
| 13 | plugins/ipmi/Makefile.in | 4 +++- |
| 14 | 1 file changed, 3 insertions(+), 1 deletion(-) |
| 15 | |
| 16 | diff --git a/plugins/ipmi/Makefile.in b/plugins/ipmi/Makefile.in |
| 17 | index 7c6b0a4..6204dbe 100644 |
| 18 | --- a/plugins/ipmi/Makefile.in |
| 19 | +++ b/plugins/ipmi/Makefile.in |
| 20 | @@ -448,7 +448,9 @@ top_srcdir = @top_srcdir@ |
| 21 | MAINTAINERCLEANFILES = Makefile.in |
| 22 | AM_CPPFLAGS = -DG_LOG_DOMAIN=\"ipmi\" @OPENHPI_INCLUDES@ |
| 23 | EXTRA_DIST = ipmi.sym ekeyfru.h |
| 24 | -SUBDIRS = t |
| 25 | +#SUBDIRS = t |
| 26 | +#Tests don't compile wih SSL properly so comment them out |
| 27 | +SUBDIRS = |
| 28 | AM_CFLAGS = @OPENIPMI_CFLAGS@ |
| 29 | pkglib_LTLIBRARIES = libipmi.la |
| 30 | libipmi_la_SOURCES = ipmi.c \ |
| 31 | -- |
| 32 | 1.9.1 |
| 33 | |