diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-26 11:10:55 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-10-05 15:29:49 +0900 |
commit | 7a8beb7ad51551babd17331f3c0f58af25916f67 (patch) | |
tree | 44f7e274ce640514b43173f63770f02c3e23da18 | |
parent | 6b190d3ce0a693750517256ba67011a9fa04a12a (diff) | |
download | linux-7a8beb7ad51551babd17331f3c0f58af25916f67.tar.gz linux-7a8beb7ad51551babd17331f3c0f58af25916f67.tar.bz2 linux-7a8beb7ad51551babd17331f3c0f58af25916f67.zip |
integrity: remove pointless subdir-$(CONFIG_...)
The ima/ and evm/ sub-directories contain built-in objects, so
obj-$(CONFIG_...) is the correct way to descend into them.
subdir-$(CONFIG_...) is redundant.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rw-r--r-- | security/integrity/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/security/integrity/Makefile b/security/integrity/Makefile index b6d6273a4176..35e6ca773734 100644 --- a/security/integrity/Makefile +++ b/security/integrity/Makefile @@ -14,7 +14,5 @@ integrity-$(CONFIG_LOAD_UEFI_KEYS) += platform_certs/efi_parser.o \ platform_certs/load_uefi.o integrity-$(CONFIG_LOAD_IPL_KEYS) += platform_certs/load_ipl_s390.o -subdir-$(CONFIG_IMA) += ima obj-$(CONFIG_IMA) += ima/ -subdir-$(CONFIG_EVM) += evm obj-$(CONFIG_EVM) += evm/ |