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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6844FECAAD2 for ; Thu, 1 Sep 2022 06:01:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232710AbiIAGBG convert rfc822-to-8bit (ORCPT ); Thu, 1 Sep 2022 02:01:06 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37044 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232209AbiIAGBA (ORCPT ); Thu, 1 Sep 2022 02:01:00 -0400 Received: from lithops.sigma-star.at (lithops.sigma-star.at [195.201.40.130]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AD9AEA50F1; Wed, 31 Aug 2022 23:00:58 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by lithops.sigma-star.at (Postfix) with ESMTP id D8534632FA9B; Thu, 1 Sep 2022 08:00:55 +0200 (CEST) Received: from lithops.sigma-star.at ([127.0.0.1]) by localhost (lithops.sigma-star.at [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id 1ZOMFAHt6mKt; Thu, 1 Sep 2022 08:00:55 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by lithops.sigma-star.at (Postfix) with ESMTP id 5D123632FA86; Thu, 1 Sep 2022 08:00:55 +0200 (CEST) Received: from lithops.sigma-star.at ([127.0.0.1]) by localhost (lithops.sigma-star.at [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id 6ddJBtG8D8sk; Thu, 1 Sep 2022 08:00:55 +0200 (CEST) Received: from lithops.sigma-star.at (lithops.sigma-star.at [195.201.40.130]) by lithops.sigma-star.at (Postfix) with ESMTP id 37FC9632FA85; Thu, 1 Sep 2022 08:00:55 +0200 (CEST) Date: Thu, 1 Sep 2022 08:00:55 +0200 (CEST) From: Richard Weinberger To: masahiroy Cc: linux-kbuild , Michal Marek , Nick Desaulniers , Randy Dunlap , linux-kernel Message-ID: <318503440.165958.1662012055078.JavaMail.zimbra@nod.at> In-Reply-To: <20220901011252.550830-1-masahiroy@kernel.org> References: <20220901011252.550830-1-masahiroy@kernel.org> Subject: Re: [PATCH] kbuild: disable header exports for UML in a straightforward way MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8BIT X-Originating-IP: [195.201.40.130] X-Mailer: Zimbra 8.8.12_GA_3807 (ZimbraWebClient - FF97 (Linux)/8.8.12_GA_3809) Thread-Topic: kbuild: disable header exports for UML in a straightforward way Thread-Index: Tadpx3Rgv4hYtC6GLrek9Km8JVUDNQ== Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org ----- Ursprüngliche Mail ----- > Von: "masahiroy" > An: "linux-kbuild" > CC: "masahiroy" , "Michal Marek" , "Nick Desaulniers" > , "Randy Dunlap" , "richard" , "linux-kernel" > > Gesendet: Donnerstag, 1. September 2022 03:12:52 > Betreff: [PATCH] kbuild: disable header exports for UML in a straightforward way > Previously 'make ARCH=um headers' stopped because of missing > arch/um/include/uapi/asm/Kbuild. > > The error is not shown since commit ed102bf2afed ("um: Fix W=1 > missing-include-dirs warnings") because UML got > arch/um/include/uapi/asm/Kbuild. > > Hard-code the unsupported architecture, so it works like before. > > Fixes: ed102bf2afed ("um: Fix W=1 missing-include-dirs warnings") > Signed-off-by: Masahiro Yamada Acked-by: Richard Weinberger Thanks, //richard