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 /sh | |
parent | c0f8313164fb60fcf41313b273b21f3079e93c1e (diff) |
build: change root_prefix to rootprefix
Diffstat (limited to 'sh')
-rw-r--r-- | sh/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sh/meson.build b/sh/meson.build index 33b128b1..6469a8da 100644 --- a/sh/meson.build +++ b/sh/meson.build @@ -1,8 +1,8 @@ sh_conf_data = configuration_data() -if root_prefix == '/' +if rootprefix == '/' sh_conf_data.set('PREFIX', '') else - sh_conf_data.set('PREFIX', root_prefix) + sh_conf_data.set('PREFIX', rootprefix) endif sh_conf_data.set('BINDIR', bindir) sh_conf_data.set('LIBEXECDIR', rc_libexecdir) |