mirror of https://github.com/nirenjan/libx52.git
fix: Use correct paths for local,sysconf,localstate dirs
parent
c5ec15231f
commit
5f8177f16b
|
|
@ -37,9 +37,9 @@ cdata = configuration_data()
|
||||||
cdata.set_quoted('PACKAGE', meson.project_name())
|
cdata.set_quoted('PACKAGE', meson.project_name())
|
||||||
cdata.set_quoted('PACKAGE_BUGREPORT', 'https://github.com/nirenjan/libx52/issues')
|
cdata.set_quoted('PACKAGE_BUGREPORT', 'https://github.com/nirenjan/libx52/issues')
|
||||||
cdata.set_quoted('PACKAGE_NAME', meson.project_name())
|
cdata.set_quoted('PACKAGE_NAME', meson.project_name())
|
||||||
cdata.set_quoted('LOCALEDIR', get_option('localedir'))
|
cdata.set_quoted('LOCALEDIR', get_option('prefix') / get_option('localedir'))
|
||||||
cdata.set_quoted('SYSCONFDIR', get_option('sysconfdir'))
|
cdata.set_quoted('SYSCONFDIR', get_option('prefix') / get_option('sysconfdir'))
|
||||||
cdata.set_quoted('LOCALSTATEDIR', get_option('localstatedir'))
|
cdata.set_quoted('LOCALSTATEDIR', get_option('prefix') / get_option('localstatedir'))
|
||||||
cdata.set_quoted('PACKAGE_VERSION', meson.project_version())
|
cdata.set_quoted('PACKAGE_VERSION', meson.project_version())
|
||||||
cdata.set_quoted('VERSION', meson.project_version())
|
cdata.set_quoted('VERSION', meson.project_version())
|
||||||
cdata.set10('ENABLE_NLS', get_option('nls').enabled())
|
cdata.set10('ENABLE_NLS', get_option('nls').enabled())
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue