Remove ipmid-host library

This library causes some false positives with checksec, because it
doesn't really have any code in it, so there's no code to check for
stack canaries.

This commit removes the library.  It doesn't seem to be used anywhere in
the project, and in practice, only links against sdbusplus, so it seems
like cruft.

Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: I15dd876b8dfd485d64572707071190fbea2357a0
diff --git a/libipmid-host/meson.build b/libipmid-host/meson.build
deleted file mode 100644
index e646b13..0000000
--- a/libipmid-host/meson.build
+++ /dev/null
@@ -1,11 +0,0 @@
-ipmid_pre = [
-  sdbusplus_dep,
-]
-
-library(
-  'ipmid-host',
-  dependencies: ipmid_pre,
-  version: meson.project_version(),
-  include_directories: root_inc,
-  install: true,
-  install_dir: get_option('libdir'))
diff --git a/meson.build b/meson.build
index 402c3a7..0fbadc3 100644
--- a/meson.build
+++ b/meson.build
@@ -104,7 +104,6 @@
 
 # Subfolders
 subdir('libipmid')
-subdir('libipmid-host')
 subdir('include')
 subdir('user_channel')
 subdir('scripts')