From: nicolas.iooss@m4x.org (Nicolas Iooss) Date: Sun, 23 Nov 2014 16:34:33 +0100 Subject: [refpolicy] [PATCH] Create tmp directory when compiling a .mod.fc file in a modular way Message-ID: <1416756873-25634-1-git-send-email-nicolas.iooss@m4x.org> To: refpolicy@oss.tresys.com List-Id: refpolicy.oss.tresys.com When compiling modules using support/Makefile.devel (which is installed in /usr/share/selinux/*/include/Makefile) with "make -j9", the build fails because tmp/ does not exist. Add the missing command to create tmp/ when running tmp/%.mod.fc target. Gentoo bug: https://bugs.gentoo.org/show_bug.cgi?id=530178 --- support/Makefile.devel | 1 + 1 file changed, 1 insertion(+) diff --git a/support/Makefile.devel b/support/Makefile.devel index b96e9b3d1caa..ae5293296194 100644 --- a/support/Makefile.devel +++ b/support/Makefile.devel @@ -158,6 +158,7 @@ tmp/%.mod: $(m4support) tmp/all_interfaces.conf %.te $(verbose) $(CHECKMODULE) -m $(@:.mod=.tmp) -o $@ tmp/%.mod.fc: $(m4support) %.fc + @test -d $(@D) || mkdir -p $(@D) $(verbose) $(M4) $(M4PARAM) $^ > $@ %.pp: tmp/%.mod tmp/%.mod.fc -- 2.1.3