diff options
author | John Turner <jturner.usa@gmail.com> | 2025-08-15 19:28:52 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-08-15 19:28:52 -0400 |
commit | cfd55472db08f37b2123c350ce76fb3d916d25f6 (patch) | |
tree | f1695eb3bf064426091bf4f8d280015d344765ca | |
parent | 9250161c00ba2125938cedda2c18490278ec6f50 (diff) | |
download | selinux-policy-cfd55472db08f37b2123c350ce76fb3d916d25f6.tar.gz |
install file_contexts into the correct place
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 6d0b551..ca22e41 100644 --- a/meson.build +++ b/meson.build @@ -13,12 +13,12 @@ file_contexts = custom_target( command: [secilc, '--optimize', '--mls', 'true', '@INPUT@'], install: true, install_dir: [ - selinux_store / 'files' / 'contexts', + selinux_store / 'contexts' / 'files', selinux_store / 'policy', ], ) -install_subdir('skel', install_dir: selinux_store) +install_subdir('skel/contexts', install_dir: selinux_store) if get_option('install_sources') install_data( |