From: Kylene Jo Hall Thanks to Stephen Smalley for pointing out that slim was added to the wrong place in the Makefile. This patch fixes the problem. Signed-off-by: Kylene Hall Signed-off-by: Mimi Zohar Signed-off-by: Andrew Morton --- security/Makefile | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN security/Makefile~slim-make-and-config-stuff-makefile-fix security/Makefile --- a/security/Makefile~slim-make-and-config-stuff-makefile-fix +++ a/security/Makefile @@ -3,7 +3,6 @@ # obj-$(CONFIG_KEYS) += keys/ -obj-$(CONFIG_SECURITY_SLIM) += slim/ subdir-$(CONFIG_SECURITY_SELINUX) += selinux # if we don't select a security model, use the default capabilities @@ -15,6 +14,7 @@ endif obj-$(CONFIG_SECURITY) += security.o dummy.o inode.o obj-$(CONFIG_INTEGRITY) += integrity.o integrity_dummy.o # Must precede capability.o in order to stack properly. +obj-$(CONFIG_SECURITY_SLIM) += slim/ obj-$(CONFIG_SECURITY_SELINUX) += selinux/built-in.o obj-$(CONFIG_SECURITY_CAPABILITIES) += commoncap.o capability.o obj-$(CONFIG_SECURITY_ROOTPLUG) += commoncap.o root_plug.o _