Skip to content

Commit

Permalink
meson.build: use gzip -k instead of --keep
Browse files Browse the repository at this point in the history
the busybox version of gzip does not implement --keep. the other
implementations (GNU, BSD), do.
all implement -k, so -k has the highest compatibility.
  • Loading branch information
nekopsykose authored and mtwebster committed Jun 5, 2023
1 parent 5b8fcee commit a2de9fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/taglist/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ foreach tagtype : taglist_in_files
'@0@gztags'.format(tagtype.format('')),
input: taglist_xml,
output: tagtype.format('.gz'),
command: ['gzip', '-9', '-n', '--keep', '-f', '@INPUT@'],
command: ['gzip', '-9', '-n', '-k', '-f', '@INPUT@'],
install: true,
install_dir: join_paths(pluginsdatadir, 'taglist')
)
Expand Down

0 comments on commit a2de9fd

Please sign in to comment.