Compare commits

..

1 Commits

Author SHA1 Message Date
18d9f0c807 config rc_libexecdir 2024-04-30 20:21:56 +02:00
2 changed files with 3 additions and 1 deletions

View File

@@ -95,7 +95,7 @@ if os == 'Linux' and libexecdir == 'libexec'
libexecdir = 'lib'
endif
libexecdir = rootprefix / libexecdir
rc_libexecdir = libexecdir / 'rc'
rc_libexecdir = libexecdir / get_option('librcdir')
rc_bindir = rc_libexecdir / 'bin'
rc_sbindir = rc_libexecdir / 'sbin'
rc_shdir = rc_libexecdir / 'sh'

View File

@@ -30,3 +30,5 @@ option('sysvinit', type : 'boolean', value : false,
description : 'enable SysVinit compatibility (linux only)')
option('zsh-completions', type : 'boolean',
description : 'install zsh completions')
option('librcdir', type : 'string', value : 'rc',
description : 'default location of rc libexec dir')