mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-12 16:10:54 +00:00
meson: remove unnecessary join_path() with get_option('prefix')
Meson will expand the paths for you.
This commit is contained in:
@ -72,8 +72,8 @@ config_h.set_quoted('PACKAGE_NAME', 'sysprof')
|
||||
config_h.set_quoted('PACKAGE_VERSION', meson.project_version())
|
||||
config_h.set_quoted('PACKAGE_STRING', 'sysprof-' + meson.project_version())
|
||||
config_h.set_quoted('PACKAGE_BUGREPORT', 'https://gitlab.gnome.org/GNOME/sysprof/-/issues/new')
|
||||
config_h.set_quoted('PACKAGE_LIBEXECDIR', join_paths(get_option('prefix'), get_option('libexecdir')))
|
||||
config_h.set_quoted('PACKAGE_LIBDIR', join_paths(get_option('prefix'), get_option('libdir')))
|
||||
config_h.set_quoted('PACKAGE_LIBEXECDIR', get_option('libexecdir'))
|
||||
config_h.set_quoted('PACKAGE_LIBDIR', get_option('libdir'))
|
||||
config_h.set('PACKAGE_TARNAME', 'PACKAGE_STRING')
|
||||
config_h.set('PACKAGE', 'PACKAGE_NAME')
|
||||
config_h.set('VERSION', 'PACKAGE_VERSION')
|
||||
|
||||
Reference in New Issue
Block a user