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:
parent
91c9cb17fc
commit
ca3e8e0d5e
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ install_data(
|
|||
|
||||
install_subdir(
|
||||
'functions',
|
||||
install_dir: '/lib/gentoo'
|
||||
install_dir: 'lib/gentoo'
|
||||
)
|
||||
|
||||
cc = meson.get_compiler('c')
|
||||
|
|
|
|||
Loading…
Reference in a new issue