dbus-interfaces: switch to meson
Switch the docker build scripts to use meson since autotools
has been deleted.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I08fc0515c1b28ef399693594518f0c45d447f9f7
diff --git a/build-unit-test-docker.sh b/build-unit-test-docker.sh
index 3cbc23c..232d05b 100755
--- a/build-unit-test-docker.sh
+++ b/build-unit-test-docker.sh
@@ -423,10 +423,9 @@
COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
RUN curl -L https://github.com/openbmc/phosphor-dbus-interfaces/archive/${PKG_REV['openbmc/phosphor-dbus-interfaces']}.tar.gz | tar -xz && \
cd phosphor-dbus-interfaces-* && \
-./bootstrap.sh && \
-./configure ${CONFIGURE_FLAGS[@]} --enable-openpower-dbus-interfaces --enable-ibm-dbus-interfaces && \
-make -j$(nproc) && \
-make install
+meson build ${MESON_FLAGS[@]} -Ddata_org_open_power=true -Ddata_com_ibm=true && \
+ninja -C build && \
+ninja -C build install
FROM openbmc-base as openbmc-phosphor-logging
COPY --from=openbmc-cereal ${PREFIX} ${PREFIX}