From patchwork Thu Aug 2 13:47:08 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dirk Gouders X-Patchwork-Id: 10553649 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id A57A614E2 for ; Thu, 2 Aug 2018 13:47:46 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 725E02BBCC for ; Thu, 2 Aug 2018 13:47:46 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 628C129D7D; Thu, 2 Aug 2018 13:47:46 +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.0 required=2.0 tests=BAYES_00,DKIM_ADSP_DISCARD, DKIM_SIGNED,MAILING_LIST_MULTI,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 835DE2BDE1 for ; Thu, 2 Aug 2018 13:47:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732154AbeHBPjC (ORCPT ); Thu, 2 Aug 2018 11:39:02 -0400 Received: from services.gouders.net ([141.101.32.176]:40543 "EHLO services.gouders.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732068AbeHBPjB (ORCPT ); Thu, 2 Aug 2018 11:39:01 -0400 Received: from lena.gouders.net ([193.175.198.193]) (authenticated bits=0) by services.gouders.net (8.14.8/8.14.8) with ESMTP id w72DlNTF022507 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Thu, 2 Aug 2018 15:47:34 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gouders.net; s=gnet; t=1533217654; bh=6doC/sd8l061rczdxawkStAjUXxwr9ImfRsYfXGRZFw=; h=From:To:Cc:Subject:Date; b=QoP0SQU1t3IiniOneepEYhfWSD6R4H5rZ+E6pC4i6aLt9NIF7uNi/7HpbgM5deA6B wiZpfmzdfvlpnFNWLDPMiiTkyAn45Zxo2oKPU0MrsV2O9Rj4uiulFC3YiAmDTj0tKf SmkQpSLBfQDm+YVIs8VxOev74Z2T9Q11uPV8R898= From: Dirk Gouders To: Masahiro Yamada Cc: Dirk Gouders , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] Kbuild: Makefile.modbuiltin: include auto.conf and tristate.conf mandatory Date: Thu, 2 Aug 2018 15:47:08 +0200 Message-Id: <20180802134708.26456-1-dirk@gouders.net> X-Mailer: git-send-email 2.16.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 The files auto.conf and tristate.conf are mandatory for building modules.builtin files, therefore include them as such. Usually, the top-level Makefile ensures that those files exist but we want to make sure we get noticed if they are missing for whatever reason. Signed-off-by: Dirk Gouders --- scripts/Makefile.modbuiltin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Makefile.modbuiltin b/scripts/Makefile.modbuiltin index 40867a41615b..a072a4267746 100644 --- a/scripts/Makefile.modbuiltin +++ b/scripts/Makefile.modbuiltin @@ -8,10 +8,10 @@ src := $(obj) PHONY := __modbuiltin __modbuiltin: --include include/config/auto.conf +include include/config/auto.conf # tristate.conf sets tristate variables to uppercase 'Y' or 'M' # That way, we get the list of built-in modules in obj-Y --include include/config/tristate.conf +include include/config/tristate.conf include scripts/Kbuild.include