meson: install libexec binaries

Change-Id: I149892bf081e1569d7786f085e890bc3d2eb50e5
This commit is contained in:
eldritch horrors 2024-03-29 23:37:53 +01:00
parent 351c1a9c52
commit 5956f509b6
2 changed files with 9 additions and 0 deletions

View file

@ -50,6 +50,7 @@ path_opts = [
'mandir',
'libdir',
'includedir',
'libexecdir',
# Homecooked Lix directories.
'store-dir',
'state-dir',

View file

@ -118,3 +118,11 @@ foreach linkname : nix_symlinks
install_tag : 'runtime'
)
endforeach
install_symlink(
'build-remote',
pointing_to : bindir / 'nix',
install_dir : libexecdir / 'nix',
# The 'runtime' tag is what executables default to, which we want to emulate here.
install_tag : 'runtime'
)