From patchwork Sat Sep 21 13:18:46 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 11155465 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id E69F476 for ; Sat, 21 Sep 2019 13:19:00 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A213920C01 for ; Sat, 21 Sep 2019 13:19:00 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=nifty.com header.i=@nifty.com header.b="S4kl0Yq9" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2394132AbfIUNTA (ORCPT ); Sat, 21 Sep 2019 09:19:00 -0400 Received: from conuserg-08.nifty.com ([210.131.2.75]:24022 "EHLO conuserg-08.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389497AbfIUNTA (ORCPT ); Sat, 21 Sep 2019 09:19:00 -0400 Received: from grover.flets-west.jp (softbank126021098169.bbtec.net [126.21.98.169]) (authenticated) by conuserg-08.nifty.com with ESMTP id x8LDImo3014366; Sat, 21 Sep 2019 22:18:48 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-08.nifty.com x8LDImo3014366 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1569071928; bh=XVVno40agGdniDiS2Ob/nbsE/04CiPA8IGTW3qDnaaA=; h=From:To:Cc:Subject:Date:From; b=S4kl0Yq91pVQxQ2NUslSds3FW/yAC1ZqRjhDqIFJ1kUwOVU+9zPnxPdTBy4pfblDd sUtFZwefHABK29hcFFJEqMJnBpOhQ9ieqWRfL3ckjocYBG9cdVbdM4l8LBWPt44j1O ZjnW8AFLge6yxGiPyuDuyRyl16lWmvH7f5xgTgw5QsyKQltQjwgudQxWES/gLnvXAg JsW1CFb27W5cbvkHHY3y7+n2nPZTHP7mJjArD48zFOCSdVGxxXR4frX5Ajz0+RDFTa aoOIPhuIF50TiCKW6rnrbT/ggdrG+5tiHHRqCfRS0yFTtFTQAZn0030b/1XjKRhTFy k/sVfRpuJs+sA== X-Nifty-SrcIP: [126.21.98.169] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Masahiro Yamada , Michal Marek , linux-kernel@vger.kernel.org Subject: [PATCH] kbuild: update comment about KBUILD_ALLDIRS Date: Sat, 21 Sep 2019 22:18:46 +0900 Message-Id: <20190921131846.18981-1-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.17.1 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org Commit 000ec95fbe75 ("kbuild: pkg: rename scripts/package/Makefile to scripts/Makefile.package") missed to update this comment. Fixes: 000ec95fbe75 ("kbuild: pkg: rename scripts/package/Makefile to scripts/Makefile.package") Signed-off-by: Masahiro Yamada --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6206cd358411..4808377f2db8 100644 --- a/Makefile +++ b/Makefile @@ -1037,7 +1037,7 @@ export KBUILD_VMLINUX_OBJS := $(head-y) $(init-y) $(core-y) $(libs-y2) \ export KBUILD_VMLINUX_LIBS := $(libs-y1) export KBUILD_LDS := arch/$(SRCARCH)/kernel/vmlinux.lds export LDFLAGS_vmlinux -# used by scripts/package/Makefile +# used by scripts/Makefile.package export KBUILD_ALLDIRS := $(sort $(filter-out arch/%,$(vmlinux-alldirs)) LICENSES arch include scripts tools) vmlinux-deps := $(KBUILD_LDS) $(KBUILD_VMLINUX_OBJS) $(KBUILD_VMLINUX_LIBS)