forked from pool/selinux-policy
- Update to version 20240702: * Allow manage dosfs_t files to snapperd * Add auth_rw_wtmpdb_login_records to domains using auth_manage_login_records * Add auth_rw_wtmpdb_login_records to modules * Allow xdm_t to read-write to wtmpdb (bsc#1225984) * Introduce types for wtmpdb and rw interface * Introduce wtmp_file_type attribute * Revert "Add policy for wtmpdb (bsc#1210717)" OBS-URL: https://build.opensuse.org/request/show/1184825 OBS-URL: https://build.opensuse.org/package/show/security:SELinux/selinux-policy?expand=0&rev=230
23 lines
368 B
Makefile
23 lines
368 B
Makefile
# installation paths
|
|
SHAREDIR := /usr/share/selinux
|
|
|
|
AWK ?= gawk
|
|
NAME ?= $(strip $(shell $(AWK) -F= '/^SELINUXTYPE/{ print $$2 }' /etc/selinux/config))
|
|
|
|
ifeq ($(MLSENABLED),)
|
|
MLSENABLED := 1
|
|
endif
|
|
|
|
ifeq ($(MLSENABLED),1)
|
|
NTYPE = mcs
|
|
endif
|
|
|
|
ifeq ($(NAME),mls)
|
|
NTYPE = mls
|
|
endif
|
|
|
|
TYPE ?= $(NTYPE)
|
|
|
|
HEADERDIR := $(SHAREDIR)/devel/include
|
|
include $(HEADERDIR)/Makefile
|