meson: Use correct prefix for systemd_system_unit_dir
systemd uses "rootprefix", not "prefix" for this value
059b1b31ad/src/core/systemd.pc.in (L23)
This commit is contained in:
parent
42a01822bf
commit
561d6fd478
|
@ -4,7 +4,7 @@ if systemd_system_unit_dir == ''
|
||||||
if systemd.found()
|
if systemd.found()
|
||||||
systemd_system_unit_dir = systemd.get_variable(
|
systemd_system_unit_dir = systemd.get_variable(
|
||||||
pkgconfig: 'systemdsystemunitdir',
|
pkgconfig: 'systemdsystemunitdir',
|
||||||
pkgconfig_define: ['prefix', get_option('prefix')],
|
pkgconfig_define: ['rootprefix', get_option('prefix')],
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue