From 35dbb8b0d69099f6cdf3ea8ce5f4c2817daf010f Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Wed, 8 Nov 2023 21:48:28 +0900 Subject: [PATCH] meson: disable -Ddefault-network by default Follow-up for 9b7a624267fddc5c20bd15480e7a393d7a3b270e. This may break existing setups. Let's disable it by default. --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index e9283dc37e..83b48ff5bb 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -130,7 +130,7 @@ option('homed', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : ' description : 'install the systemd-homed stack') option('networkd', type : 'boolean', description : 'install the systemd-networkd stack') -option('default-network', type : 'boolean', value : true, +option('default-network', type : 'boolean', value : false, description : 'install default .network files') option('timedated', type : 'boolean', description : 'install the systemd-timedated daemon')