mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-07 11:20:23 +01:00
meson.build: fix build failure with -Dmodem_manager=false
Fix the following build failure with -Dmodem_manager=false raised since commit03ba04d478('build: meson: add option to set the mobile-broadband-provider-info database'). ../output-1/build/network-manager-1.40.10/meson.build:1060:0: ERROR: Unknown variable "mobile_broadband_provider_info_database". http://autobuild.buildroot.org/results/896879c8e8ce022556ee834216ced2f962ff279c Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Fixes:03ba04d478('build: meson: add option to set the mobile-broadband-provider-info database') https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/1544 (cherry picked from commit3a3ac89b53)
This commit is contained in:
parent
bc9482f0e5
commit
b5721a8c7b
1 changed files with 3 additions and 1 deletions
|
|
@ -1057,7 +1057,9 @@ output += ' jansson: ' + jansson_msg + '\n'
|
|||
output += ' iptables: ' + config_h.get('IPTABLES_PATH') + '\n'
|
||||
output += ' nft: ' + config_h.get('NFT_PATH') + '\n'
|
||||
output += ' modemmanager-1: ' + enable_modem_manager.to_string() + '\n'
|
||||
output += ' mobile-broadband-provider-info-database: ' + mobile_broadband_provider_info_database + '\n'
|
||||
if enable_modem_manager
|
||||
output += ' mobile-broadband-provider-info-database: ' + mobile_broadband_provider_info_database + '\n'
|
||||
endif
|
||||
output += ' ofono: ' + enable_ofono.to_string() + '\n'
|
||||
output += ' concheck: ' + enable_concheck.to_string() + '\n'
|
||||
output += ' libteamdctl: ' + enable_teamdctl.to_string() + '\n'
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue