Olivia Crain
624f44bf25
Using `configure_file` to copy files has been deprecated since Meson 0.64.0.
The intended replacement is the `fs.copyfile` method.
This removes the following deprecation warning that arises when a minimum
Meson version is specified:
``
Project [...] uses feature deprecated since '0.64.0': copy arg in configure_file. Use fs.copyfile instead
``
Change-Id: I09ffc92e96311ef9ed594343a0a16d51e74b114a
10 lines
247 B
Meson
10 lines
247 B
Meson
foreach script : [ [ 'completion.zsh', '_nix' ], [ 'run-help-nix' ] ]
|
|
fs.copyfile(
|
|
script[0],
|
|
script.get(1, script[0]),
|
|
install : true,
|
|
install_dir : datadir / 'zsh/site-functions',
|
|
install_mode : 'rw-r--r--',
|
|
)
|
|
endforeach
|