diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-04-17 06:47:47 +0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2014-06-10 01:24:59 +0400 |
commit | c43cecadb0bf0ccd6e9c96a920c753ae47dce567 (patch) | |
tree | 102f45ae3057bd86c1c4f3b84b33057026ac8c46 /scripts/Makefile | |
parent | d4bc590f8716f7dde6b7bca319097ac30a8cb0b4 (diff) | |
download | linux-c43cecadb0bf0ccd6e9c96a920c753ae47dce567.tar.xz |
kbuild: do not add "selinux" to subdir- twice
scripts/Makefile adds "selinux" to subdir-y or subdir- twice.
subdir-$(CONFIG_MODVERSIONS) += genksyms
subdir-y += mod
subdir-$(CONFIG_SECURITY_SELINUX) += selinux <--- here
subdir-$(CONFIG_DTC) += dtc
# Let clean descend into subdirs
subdir- += basic kconfig package selinux <--- again
The latter is redundant.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/Makefile')
-rw-r--r-- | scripts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile b/scripts/Makefile index 1d07860f6c42..890df5c6adfb 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -39,4 +39,4 @@ subdir-$(CONFIG_SECURITY_SELINUX) += selinux subdir-$(CONFIG_DTC) += dtc # Let clean descend into subdirs -subdir- += basic kconfig package selinux +subdir- += basic kconfig package |