commit: 393b946b07d418fccf66759420c2210fe9475cc1 Author: Nicolas Iooss <nicolas.iooss <AT> m4x <DOT> org> AuthorDate: Sun Nov 23 15:34:33 2014 +0000 Commit: Jason Zaman <gentoo <AT> perfinion <DOT> com> CommitDate: Tue Dec 2 21:09:09 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=393b946b
Create tmp directory when compiling a .mod.fc file in a modular way 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 b96e9b3..ae52932 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
