diff options
author | Patrick Venture <venture@google.com> | 2019-03-07 12:09:51 -0800 |
---|---|---|
committer | Patrick Venture <venture@google.com> | 2019-03-08 13:09:59 -0800 |
commit | b15d654ed1f6804fb2e82a5cfe97eaf35b83529e (patch) | |
tree | 0aed1f772fbf317e5f47f9488b31c9dd0fd99d27 | |
parent | 48eb4029694c228ee8bb09202efb9d6c8b741d96 (diff) | |
download | phosphor-ipmi-blobs-b15d654ed1f6804fb2e82a5cfe97eaf35b83529e.tar.gz phosphor-ipmi-blobs-b15d654ed1f6804fb2e82a5cfe97eaf35b83529e.zip |
build: add dependency on ipmiblob
ipmiblob is the library provided by ipmi-blob-tool.
Change-Id: Ic58065eb280e8628f36764bd40f973be10f114ca
Signed-off-by: Patrick Venture <venture@google.com>
-rw-r--r-- | configure.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index fb3d62a..31f9416 100644 --- a/configure.ac +++ b/configure.ac @@ -42,6 +42,14 @@ PKG_CHECK_MODULES( [], [AC_MSG_ERROR([Could not find libipmid...openbmc/phosphor-host-ipmid package required])] ) +PKG_CHECK_MODULES( + [IPMIBLOB], + [ipmiblob], + [], + [AC_MSG_ERROR( + [Could not find ipmiblob...openbmc/ipmi-blob-tool package required]) + ] +) AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])]) # Make it possible for users to choose if they want test support |