diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2021-09-06 14:30:30 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2021-09-06 14:30:30 -0500 |
commit | 444e44eb9da303c6614034a3558daceca15e0315 (patch) | |
tree | 35f27ca36419884b89536af97f4b132caac107c8 /meson.build | |
parent | c0f8313164fb60fcf41313b273b21f3079e93c1e (diff) |
build: change root_prefix to rootprefix
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meson.build b/meson.build index 348ddba7..dc169b5d 100644 --- a/meson.build +++ b/meson.build @@ -66,15 +66,15 @@ else pkg_prefix = option_pkg_prefix endif -root_prefix = get_option('root_prefix') -if root_prefix == '' - root_prefix = '/' +rootprefix = get_option('rootprefix') +if rootprefix == '' + rootprefix = '/' endif -bindir = root_prefix / get_option('bindir') -libdir = root_prefix / get_option('libdir') -libexecdir = root_prefix / get_option('libexecdir') +bindir = rootprefix / get_option('bindir') +libdir = rootprefix / get_option('libdir') +libexecdir = rootprefix / get_option('libexecdir') rc_libexecdir = libexecdir / 'rc' -sbindir = root_prefix / get_option('sbindir') +sbindir = rootprefix / get_option('sbindir') selinux_dep = dependency('libselinux', required : get_option('selinux')) if selinux_dep.found() |