From 812881a2ee7a09927c14981d636f7ecb558c68b7 Mon Sep 17 00:00:00 2001 From: Enrico Joerns Date: Tue, 10 Oct 2023 20:45:33 +0200 Subject: [PATCH] src: replace remaining refs to autotools options by meson equivalent Signed-off-by: Enrico Joerns --- src/bundle.c | 4 ++-- test/service.c | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/bundle.c b/src/bundle.c index a03a2c8fb..6712a1812 100644 --- a/src/bundle.c +++ b/src/bundle.c @@ -1853,7 +1853,7 @@ static gboolean open_remote_bundle(RaucBundle *bundle, GError **error) #else static gboolean open_remote_bundle(RaucBundle *bundle, GError **error) { - g_error("configured without --enable-streaming"); + g_error("configured without -Dstreaming=true"); return FALSE; } #endif @@ -1963,7 +1963,7 @@ gboolean check_bundle(const gchar *bundlename, RaucBundle **bundle, CheckBundleP } g_debug("Downloaded temp bundle to %s", ibundle->path); #else - g_warning("Mounting remote bundle not supported, recompile with --enable-network"); + g_warning("Mounting remote bundle not supported, recompile with -Dnetwork=true"); #endif } else { ibundle->path = g_strdup(bundlename); diff --git a/test/service.c b/test/service.c index 203e3688d..77cfafabc 100644 --- a/test/service.c +++ b/test/service.c @@ -172,7 +172,7 @@ static void service_test_install(ServiceFixture *fixture, gconstpointer user_dat gboolean ret = FALSE; if (!ENABLE_SERVICE) { - g_test_skip("Test requires RAUC being configured with \"--enable-service\"."); + g_test_skip("Test requires RAUC being configured with \"-Dservice=true\"."); return; } @@ -280,7 +280,7 @@ static void service_test_install_api(ServiceFixture *fixture, gconstpointer user g_auto(GVariantDict) dict = G_VARIANT_DICT_INIT(NULL); if (!ENABLE_SERVICE) { - g_test_skip("Test requires RAUC being configured with \"--enable-service\"."); + g_test_skip("Test requires RAUC being configured with \"-Dservice=true\"."); return; } @@ -360,7 +360,7 @@ static void service_test_info(ServiceFixture *fixture, gconstpointer user_data, g_autofree gchar *bundlepath = NULL; if (!ENABLE_SERVICE) { - g_test_skip("Test requires RAUC being configured with \"--enable-service\"."); + g_test_skip("Test requires RAUC being configured with \"-Dservice=true\"."); return; } @@ -427,7 +427,7 @@ static void service_test_slot_status(ServiceFixture *fixture, gconstpointer user GVariant *slot_status_array = NULL; if (!ENABLE_SERVICE) { - g_test_skip("Test requires RAUC being configured with \"--enable-service\"."); + g_test_skip("Test requires RAUC being configured with \"-Dservice=true\"."); return; }