mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-20 04:38:09 +02:00
meson.build: fix erroneous path expansion
Fixes: 5106461e31 ("meson: replace join_paths() with / operator")
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/2192>
This commit is contained in:
parent
756ccb5730
commit
074ad5410e
1 changed files with 1 additions and 1 deletions
|
|
@ -155,7 +155,7 @@ if dfp == ''
|
|||
if fontutil_dep.found()
|
||||
fontrootdir = fontutil_dep.get_variable(pkgconfig : 'fontrootdir')
|
||||
else
|
||||
fontrootdir = get_option('prefix') / get_option('datadir', 'fonts', 'X11')
|
||||
fontrootdir = get_option('prefix') / get_option('datadir') / 'fonts' / 'X11'
|
||||
endif
|
||||
endif
|
||||
dfp_elements = [
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue