From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.7 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1540EC76194 for ; Fri, 26 Jul 2019 02:15:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D6CD022C7C for ; Fri, 26 Jul 2019 02:15:23 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=nifty.com header.i=@nifty.com header.b="HHlRhbNo" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725923AbfGZCPX (ORCPT ); Thu, 25 Jul 2019 22:15:23 -0400 Received: from condef-09.nifty.com ([202.248.20.74]:63250 "EHLO condef-09.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725808AbfGZCPX (ORCPT ); Thu, 25 Jul 2019 22:15:23 -0400 Received: from conuserg-10.nifty.com ([10.126.8.73])by condef-09.nifty.com with ESMTP id x6Q2BjnO020605; Fri, 26 Jul 2019 11:11:45 +0900 Received: from localhost.localdomain (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-10.nifty.com with ESMTP id x6Q2B03k020523; Fri, 26 Jul 2019 11:11:02 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-10.nifty.com x6Q2B03k020523 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1564107063; bh=nOKtkgXfIVcWv2vTVE3jpIpHqbVnmkI/DmNIReebTe0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HHlRhbNo1ln2bJlCtBH2WZ40lxEa9J4wi+PaKV3i8SSd0c35WyDiSS6wXPknju9om 8B8KdYixmjkrlC5Y6Ki7VXcaWnIylTAeNDz8PKh2SR6P64FwOoCUdtcsSDZKBzN/kU MrVLStkWF9L0N0+rdsKhfrwFXXrc152JFzW5S+j0usjaQtNNxiUJ32BF/K7V7/dMt+ EjjbSFxnpIM47qP/GFmAuyG5F2ZjWyRO2ZwyhxRmUKIcy36bpYd8Ujzq7PCMG4EZmI t1vn5ogE8MceqLOboNsb9S82127dFNyWK3QFji0MklniUOJlSBaH7HCRWy6sMZd0dZ 5UOYvSEDoRPxw== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: Mimi Zohar , linux-integrity@vger.kernel.org Cc: Masahiro Yamada , Dave Howells , James Morris , Josh Boyer , Martin Schwidefsky , Nayna Jain , "Serge E. Hallyn" , linux-kernel@vger.kernel.org, linux-security-module@vger.kernel.org Subject: [PATCH 2/5] integrity: remove pointless subdir-$(CONFIG_...) Date: Fri, 26 Jul 2019 11:10:55 +0900 Message-Id: <20190726021058.4212-3-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190726021058.4212-1-yamada.masahiro@socionext.com> References: <20190726021058.4212-1-yamada.masahiro@socionext.com> Sender: owner-linux-security-module@vger.kernel.org Precedence: bulk List-ID: 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 --- security/integrity/Makefile | 2 -- 1 file changed, 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/ -- 2.17.1