Strip spaces from NAME
Strip trailing space(s) from 'NAME' being read from /etc/selinux/config as a trailing space in that name will cause a weird error during the make process for modules built out of tree. This is seen on current RedHat machines which have space in the 'SELINUXTYPE' variable.
This commit is contained in:
parent
91c8855bce
commit
f8a4b8e28b
|
@ -8,7 +8,7 @@ EINFO ?= echo
|
|||
PYTHON ?= python
|
||||
CUT ?= cut
|
||||
|
||||
NAME ?= $(shell $(AWK) -F= '/^SELINUXTYPE/{ print $$2 }' /etc/selinux/config)
|
||||
NAME ?= $(strip $(shell $(AWK) -F= '/^SELINUXTYPE/{ print $$2 }' /etc/selinux/config))
|
||||
SHAREDIR ?= /usr/share/selinux
|
||||
HEADERDIR ?= $(SHAREDIR)/$(NAME)/include
|
||||
|
||||
|
|
Loading…
Reference in New Issue