forked from lix-project/lix
meson: install libexec binaries
Change-Id: I149892bf081e1569d7786f085e890bc3d2eb50e5
This commit is contained in:
parent
351c1a9c52
commit
5956f509b6
|
@ -50,6 +50,7 @@ path_opts = [
|
||||||
'mandir',
|
'mandir',
|
||||||
'libdir',
|
'libdir',
|
||||||
'includedir',
|
'includedir',
|
||||||
|
'libexecdir',
|
||||||
# Homecooked Lix directories.
|
# Homecooked Lix directories.
|
||||||
'store-dir',
|
'store-dir',
|
||||||
'state-dir',
|
'state-dir',
|
||||||
|
|
|
@ -118,3 +118,11 @@ foreach linkname : nix_symlinks
|
||||||
install_tag : 'runtime'
|
install_tag : 'runtime'
|
||||||
)
|
)
|
||||||
endforeach
|
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'
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in a new issue