Merge pull request #1372 from flatcar-linux/jepio/selinux-base-sequential

sec-policy/selinux-base: force sequential build in src_configure.
This commit is contained in:
Jeremi Piotrowski 2021-10-27 20:22:54 +02:00 committed by GitHub
commit 1507a314b4

View File

@ -81,7 +81,11 @@ src_configure() {
# Prepare initial configuration
cd "${S}/refpolicy" || die
emake conf
# Parallel make fails with:
# python3 -t -t -E -W error support/sedoctool.py -b policy/booleans.conf -m policy/modules.conf -x doc/policy.xml
# support/sedoctool.py exiting for: Error while parsing xml
# make: *** [Makefile:415: conf.intermediate] Error 1
emake -j1 conf
# Setup the policies based on the types delivered by the end user.
# These types can be "targeted", "strict", "mcs" and "mls".