From patchwork Mon Nov 13 10:40:40 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 10055579 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id A459860365 for ; Mon, 13 Nov 2017 10:41:32 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B69E329333 for ; Mon, 13 Nov 2017 10:41:32 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id AB9F429370; Mon, 13 Nov 2017 10:41:32 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 95A2829333 for ; Mon, 13 Nov 2017 10:41:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752260AbdKMKlb (ORCPT ); Mon, 13 Nov 2017 05:41:31 -0500 Received: from conuserg-10.nifty.com ([210.131.2.77]:47831 "EHLO conuserg-10.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751720AbdKMKla (ORCPT ); Mon, 13 Nov 2017 05:41:30 -0500 Received: from pug.e01.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-10.nifty.com with ESMTP id vADAeiM8000495; Mon, 13 Nov 2017 19:40:44 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-10.nifty.com vADAeiM8000495 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1510569645; bh=A8FomTdsKPjgl3zYoqa5fkeZSD1hNlu7Y+lBY+RoMWw=; h=From:To:Cc:Subject:Date:From; b=1fgs2Inp4rH3nmcRLz9CtuiqvQ1qo9w+6TbQntkcXd6D2x+BSgZzwAPUruqnylnTi UvXZD6TXI6DVu1D2NBr4VrmUG6q+yrHKnmrkAQ/VJj6f2ynnWI+oXWsKfUlUNYJYLD on4ZzTB/xGIlmOOzVIY/5Z4OSAzmymTw8DqO7qhNO5S8ACgAl8KQAeh5mthout61P8 N6Ug+TkMryzg3YZWZOczQGp5S/i8tvM60+gBycezvjjR1sdEx6u0p5VjXiLvhm2pS6 QneiRtdV9biGohCnp3rQRPwRLAWzo0o+dQt3DHa2+lBoKY9Yl/zkyH7jM0fU/DoBwn fJDLy+QQAWi+g== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Masahiro Yamada , Eric Paris , selinux@tycho.nsa.gov, linux-kernel@vger.kernel.org, Stephen Smalley , Paul Moore Subject: [PATCH] selinux: remove unnecessary assignment to subdir- Date: Mon, 13 Nov 2017 19:40:40 +0900 Message-Id: <1510569641-28179-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Makefile.clean descends into $(subdir-y). Dummy assignment to subdir- is meaningless. Signed-off-by: Masahiro Yamada Acked-by: Paul Moore --- I will pick this up for kbuild tree since this is very trivial from the build system point of view. scripts/selinux/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/selinux/Makefile b/scripts/selinux/Makefile index e8049da..b3048b8 100644 --- a/scripts/selinux/Makefile +++ b/scripts/selinux/Makefile @@ -1,2 +1 @@ subdir-y := mdp genheaders -subdir- += mdp genheaders