openrc/src/halt/meson.build
William Hubbs 391d12db48 migrate fully to meson build system
- drop old build system
- move shared include and source files to common directory
- drop "rc-" prefix from shared include and source files
- move executable-specific code to individual directories under src
- adjust top-level .gitignore file for new build system

This closes #489.
2022-04-06 10:51:55 -05:00

8 lines
208 B
Meson

if os == 'Linux' and get_option('sysvinit')
configure_file(input : 'halt.in',
output : '@BASENAME@',
configuration : script_conf_data,
install_dir: sbindir,
install_mode: 'rwxr-xr-x')
endif