diff options
author | Boris Ranto <branto@redhat.com> | 2015-07-25 14:05:43 +0200 |
---|---|---|
committer | Boris Ranto <branto@redhat.com> | 2015-08-05 15:21:47 +0200 |
commit | 03d7a65b94ca832797d29b0ddceaec32f684b380 (patch) | |
tree | 4db0069f3010b832650c9b1d10f42dec36f13379 /selinux | |
parent | ceph-disk: set selinux context (diff) | |
download | ceph-03d7a65b94ca832797d29b0ddceaec32f684b380.tar.xz ceph-03d7a65b94ca832797d29b0ddceaec32f684b380.zip |
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 <branto@redhat.com>
Diffstat (limited to 'selinux')
-rw-r--r-- | selinux/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/selinux/Makefile.am b/selinux/Makefile.am index dbfb63c81de..280e7ecd4be 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 |