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=-5.6 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham 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 1D781CA9EAE for ; Tue, 29 Oct 2019 09:09:46 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E439A2086A for ; Tue, 29 Oct 2019 09:09:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1572340186; bh=6xewZwzEDZm0BJwjNyiTn5HPxc795xoDtGQ7k7FbBeM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=SeNm2Yy180B7J/lTJ+nuv4MDU74zvpKzLQsDrRcyyzOKN31Sj3pSFLK11CsegATZw EAxcHV0tcQVSQtz1zPBzhWA77bkKccT2T2TQSBVkeB1sk1jqdrcdxZO1usjDQsqFK7 YPTuyD0z3A8HrYFHm2fP866kC6+9SYEnqM+aY16k= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731025AbfJ2JJp (ORCPT ); Tue, 29 Oct 2019 05:09:45 -0400 Received: from mail.kernel.org ([198.145.29.99]:55002 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727320AbfJ2JJp (ORCPT ); Tue, 29 Oct 2019 05:09:45 -0400 Received: from localhost (100.50.158.77.rev.sfr.net [77.158.50.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id BE58020717; Tue, 29 Oct 2019 09:09:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1572340184; bh=6xewZwzEDZm0BJwjNyiTn5HPxc795xoDtGQ7k7FbBeM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=s1XVqUbRK7tSeIa0z4nvyUmPasVi+VNCCFif7ArUxyxxNLB8wAYAYaZrhRKKgAX7j rpJVf7YSZMSh1xrZ4S6yqJLlYV7TqIMLt/i+S9gWBnVe0P0EkICpdJMrO1Y7aBLg0J PzlrJjFqgGSkA8LwQVk2MR4iRsWFpHxuZIU5HGMk= Date: Tue, 29 Oct 2019 05:09:41 -0400 From: Sasha Levin To: Masahiro Yamada Cc: Linux Kernel Mailing List , stable , Matthias Maennich , Jessica Yu , Linux Kbuild mailing list Subject: Re: [PATCH AUTOSEL 5.3 50/89] kbuild: fix build error of 'make nsdeps' in clean tree Message-ID: <20191029090941.GK1554@sasha-vm> References: <20191018220324.8165-1-sashal@kernel.org> <20191018220324.8165-50-sashal@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org On Sat, Oct 19, 2019 at 09:14:13AM +0900, Masahiro Yamada wrote: >On Sat, Oct 19, 2019 at 7:04 AM Sasha Levin wrote: >> >> From: Masahiro Yamada >> >> [ Upstream commit d85103ac78a6d8573b21348b36f4cca2e1839a31 ] >> >> Running 'make nsdeps' in a clean source tree fails as follows: >> >> $ make -s clean; make -s defconfig; make nsdeps >> [ snip ] >> awk: fatal: cannot open file `init/modules.order' for reading (No such file or directory) >> make: *** [Makefile;1307: modules.order] Error 2 >> make: *** Deleting file 'modules.order' >> make: *** Waiting for unfinished jobs.... >> >> The cause of the error is 'make nsdeps' does not build modules at all. >> Set KBUILD_MODULES to fix it. >> >> Reviewed-by: Matthias Maennich >> Signed-off-by: Masahiro Yamada >> Signed-off-by: Jessica Yu >> Signed-off-by: Sasha Levin >> --- > >nsdeps was introduced in v5.4 > >Please do not backport this commit. I've dropped it everywhere, thank you. -- Thanks, Sasha