Makefile: use sepolgen-ifgen-attr-helper from test toolchain
When building with a non default toolchain by setting the environment variable TEST_TOOLCHAIN also use the sepolgen-ifgen helper binary sepolgen-ifgen-attr-helper from this toolchain. Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
This commit is contained in:
parent
82eca136e6
commit
426cbc3dac
4
Makefile
4
Makefile
|
@ -62,7 +62,11 @@ SEMOD_PKG ?= $(tc_usrbindir)/semodule_package
|
||||||
SEMOD_LNK ?= $(tc_usrbindir)/semodule_link
|
SEMOD_LNK ?= $(tc_usrbindir)/semodule_link
|
||||||
SEMOD_EXP ?= $(tc_usrbindir)/semodule_expand
|
SEMOD_EXP ?= $(tc_usrbindir)/semodule_expand
|
||||||
LOADPOLICY ?= $(tc_usrsbindir)/load_policy
|
LOADPOLICY ?= $(tc_usrsbindir)/load_policy
|
||||||
|
ifdef TEST_TOOLCHAIN
|
||||||
|
SEPOLGEN_IFGEN ?= $(tc_usrbindir)/sepolgen-ifgen --attr-helper $(TEST_TOOLCHAIN)$(BINDIR)/sepolgen-ifgen-attr-helper
|
||||||
|
else
|
||||||
SEPOLGEN_IFGEN ?= $(tc_usrbindir)/sepolgen-ifgen
|
SEPOLGEN_IFGEN ?= $(tc_usrbindir)/sepolgen-ifgen
|
||||||
|
endif
|
||||||
SETFILES ?= $(tc_sbindir)/setfiles
|
SETFILES ?= $(tc_sbindir)/setfiles
|
||||||
SEFCONTEXT_COMPILE ?= $(tc_usrsbindir)/sefcontext_compile
|
SEFCONTEXT_COMPILE ?= $(tc_usrsbindir)/sefcontext_compile
|
||||||
XMLLINT ?= $(BINDIR)/xmllint
|
XMLLINT ?= $(BINDIR)/xmllint
|
||||||
|
|
Loading…
Reference in New Issue