build: don't record timestamp in builtin.quirk.gz

On Arch Linux fwupd is almost reproducible except for the timestamp
recorded in the generated gzip file.
This commit is contained in:
Jelle van der Waa 2022-11-29 21:38:13 +01:00 committed by Richard Hughes
parent e1fdc5218f
commit 090c15e87e

View File

@ -604,7 +604,7 @@ custom_target('builtin-quirk-gz',
input: builtin_quirk,
output: 'builtin.quirk.gz',
capture: true,
command: [gzip, '-k', '--stdout', '@INPUT@'],
command: [gzip, '-n', '-k', '--stdout', '@INPUT@'],
install: true,
install_dir: join_paths(datadir, 'fwupd', 'quirks.d'),
)