mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-25 18:44:54 +00:00

More than one person has asked about 'why call fu_plugin_update() for a reinstall or downgrade' and I didn't have a very good answer. The plugin API is not officially stable, and we should fix things to be less confusing. Use the same verbs as the FuDevice vfuncs instead.
24 lines
485 B
Meson
24 lines
485 B
Meson
subdir('firmware_packager')
|
|
if get_option('qubes')
|
|
subdir('qubes')
|
|
endif
|
|
|
|
con2 = configuration_data()
|
|
con2.set('FWUPD_VERSION', fwupd_version)
|
|
con2.set('FWUPD_PLUGINVER', libfwupdplugin_lt_current)
|
|
|
|
configure_file(
|
|
input : 'fwupd.spec.in',
|
|
output : 'fwupd.spec.in',
|
|
configuration : con2,
|
|
)
|
|
|
|
if host_machine.system() == 'windows'
|
|
# replace @FWUPD_VERSION@
|
|
configure_file(
|
|
input : 'setup-win32.nsi.in',
|
|
output : 'setup-win32.nsi',
|
|
configuration : con2,
|
|
)
|
|
endif
|