meson.build: avoid passing an absolute path to install_subdir()

Otherwise, some of the files end up outside of EPREFIX.

Fixes: 2a58c0e462
Bug: https://bugs.gentoo.org/937463
Reported-by: Fabian Groffen <grobian@gentoo.org>
Signed-off-by: Kerin Millar <kfm@plushkava.net>
This commit is contained in:
Kerin Millar 2024-08-07 01:21:28 +01:00
parent 91c9cb17fc
commit ca3e8e0d5e

View file

@ -15,7 +15,7 @@ install_data(
install_subdir(
'functions',
install_dir: '/lib/gentoo'
install_dir: 'lib/gentoo'
)
cc = meson.get_compiler('c')