mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-05 21:30:48 +00:00
fwupd: Hide firmware-packager behind meson option
fwupd installs by default firmware-packager (a python3 script) into the CrOS image. CrOS does not support python3 interpreter and fails passing the TestValidInterpreter. Removing this script from the default installation fixes the issue. TEST=emerge-sarien fwupd BUG=chromium:857263,b/121131967 Change-Id: I855c7994fd15faa0ce3d520734537674d7538b4e
This commit is contained in:
parent
eb8b38f158
commit
f92e1f20e0
@ -1,2 +1,4 @@
|
||||
install_data('firmware-packager',
|
||||
install_dir : 'share/fwupd')
|
||||
if get_option('firmware-packager')
|
||||
install_data('firmware-packager',
|
||||
install_dir : 'share/fwupd')
|
||||
endif
|
||||
|
@ -1,5 +1,6 @@
|
||||
option('daemon', type : 'boolean', value : true, description : 'enable the fwupd daemon')
|
||||
option('consolekit', type : 'boolean', value : true, description : 'enable ConsoleKit support')
|
||||
option('firmware-packager', type : 'boolean', value : true, description : 'enable firmware-packager installation')
|
||||
option('gpg', type : 'boolean', value : true, description : 'enable the GPG verification support')
|
||||
option('gtkdoc', type : 'boolean', value : true, description : 'enable developer documentation')
|
||||
option('introspection', type : 'boolean', value : true, description : 'generate GObject Introspection data')
|
||||
|
Loading…
Reference in New Issue
Block a user