From: Boris Ranto Date: Sat, 25 Jul 2015 12:05:43 +0000 (+0200) Subject: SELinux Makefile can't work in parallel X-Git-Tag: v9.1.0~432^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=03d7a65b94ca832797d29b0ddceaec32f684b380;p=ceph.git SELinux Makefile can't work in parallel We need to force single-core compilation of SELinux policy files in the sub-make target as SELinux Makefile does not work properly when run in parallel mode. Signed-off-by: Boris Ranto --- diff --git a/selinux/Makefile.am b/selinux/Makefile.am index dbfb63c81de0..280e7ecd4be6 100644 --- a/selinux/Makefile.am +++ b/selinux/Makefile.am @@ -6,7 +6,7 @@ EXTRA_DIST = \ SELINUXROOT = $(DESTDIR)$(datadir)/selinux ceph.pp: ceph.te ceph.fc ceph.if - $(MAKE) -f $(datadir)/selinux/devel/Makefile ceph.pp + $(MAKE) -j1 -f $(datadir)/selinux/devel/Makefile ceph.pp if ENABLE_SERVER if WITH_SELINUX