diff options
author | Paul Moore <paul@paul-moore.com> | 2023-04-12 13:29:11 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-05-17 11:47:37 +0200 |
commit | 3ec77043a27d2dc7689cc570bfc9ba5015a76619 (patch) | |
tree | 9176f813a95b414d528da10c06b2e02ed165a3fc /security | |
parent | fea3144639269d37923f7a88906b3fa7f1231603 (diff) | |
download | linux-stable-3ec77043a27d2dc7689cc570bfc9ba5015a76619.tar.gz linux-stable-3ec77043a27d2dc7689cc570bfc9ba5015a76619.tar.bz2 linux-stable-3ec77043a27d2dc7689cc570bfc9ba5015a76619.zip |
selinux: ensure av_permissions.h is built when needed
[ Upstream commit 4ce1f694eb5d8ca607fed8542d32a33b4f1217a5 ]
The Makefile rule responsible for building flask.h and
av_permissions.h only lists flask.h as a target which means that
av_permissions.h is only generated when flask.h needs to be
generated. This patch fixes this by adding av_permissions.h as a
target to the rule.
Fixes: 8753f6bec352 ("selinux: generate flask headers during kernel build")
Signed-off-by: Paul Moore <paul@paul-moore.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'security')
-rw-r--r-- | security/selinux/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/Makefile b/security/selinux/Makefile index 47e4aba3a868..ee1ddda96447 100644 --- a/security/selinux/Makefile +++ b/security/selinux/Makefile @@ -24,5 +24,5 @@ quiet_cmd_flask = GEN $(obj)/flask.h $(obj)/av_permissions.h cmd_flask = $< $(obj)/flask.h $(obj)/av_permissions.h targets += flask.h av_permissions.h -$(obj)/flask.h: scripts/selinux/genheaders/genheaders FORCE +$(obj)/flask.h $(obj)/av_permissions.h &: scripts/selinux/genheaders/genheaders FORCE $(call if_changed,flask) |