Skip to content

Commit

Permalink
src: replace remaining refs to autotools options by meson equivalent
Browse files Browse the repository at this point in the history
Signed-off-by: Enrico Joerns <[email protected]>
  • Loading branch information
ejoerns committed Oct 10, 2023
1 parent 22ea8ef commit 812881a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/bundle.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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);
Expand Down
8 changes: 4 additions & 4 deletions test/service.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
}

Expand Down

0 comments on commit 812881a

Please sign in to comment.