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 087A0C43217 for ; Sun, 27 Nov 2022 15:37:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229601AbiK0PhL (ORCPT ); Sun, 27 Nov 2022 10:37:11 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52910 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229550AbiK0PhK (ORCPT ); Sun, 27 Nov 2022 10:37:10 -0500 Received: from mail-qv1-f48.google.com (mail-qv1-f48.google.com [209.85.219.48]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A3684DEB1 for ; Sun, 27 Nov 2022 07:37:09 -0800 (PST) Received: by mail-qv1-f48.google.com with SMTP id i12so5871647qvs.2 for ; Sun, 27 Nov 2022 07:37:09 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=dWn1H2wut0bpXF+6gWs1e4RvffBYdSkkZX/PkuR/kbk=; b=0BBQb+17LGW1WsYHBjZ6zom4MspZygwKrHcQvB4X1lOQThZ/NeC0qaB7gsJf2WBwOZ uFnsbLMTMohgo1+223iimcEPOLTKi9qrVzfhXrK7XnLcDaFiHgkZw0zcUBtnqpFVj5OI uibw+08c1WYBpOBqsuaZdGppDEPu0NorfDZ+MI3boMXv38IMRAy3cc3FdXYNK/k4HTXM oMFdEOOali72Zl7CdNVh60dF/rS/xznYTLMRQ6oEXLeIKzETilP2ly/rzy1bH4ZJpyO7 qFPMhGWob5oKGVyYV6YW8tHfMxpWdUxmpeJPKdz2DdQFIECkmNyhjz+WMDL1W+xbszBj 8CXg== X-Gm-Message-State: ANoB5plc8B2HBr208rKA0EcPvhSfRxJ+phSskI/zQ47cVXwTQfztsrDH DqbMeD151AeeQVq8GzkDvC5S2lmyvIsXD9n1MgCxCt9Ux2w= X-Google-Smtp-Source: AA0mqf5JTCJfURPXEPKzTgwEWwoDbr0r658HFS6oyIvHfg4DHon/lW3FNKfmpNCVk7KB7pX77VRf7J4070SG5rqw9vc= X-Received: by 2002:a05:6214:3c9a:b0:4c6:141f:819c with SMTP id ok26-20020a0562143c9a00b004c6141f819cmr26299616qvb.76.1669563428735; Sun, 27 Nov 2022 07:37:08 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: From: Dmitry Goncharov Date: Sun, 27 Nov 2022 10:36:57 -0500 Message-ID: Subject: Re: Port silent mode detection to future gnu make. To: Masahiro Yamada Cc: linux-kbuild@vger.kernel.org Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org On Sun, Nov 27, 2022 at 1:02 AM Masahiro Yamada wrote: > Please come back after your patch is applied > (and please have the patch include the commit hash > causing the behaviour change) Will do > BTW, the GNU Make manual suggests $(word 1) instead of $(firstword). > Is it for the purpose of backward compatibility for older > Make versions? Paul chose $(word 1) for this example. i am not sure if there was any specific reason. $(firstword) would do the same. > The kernel build only supports Make>=3.82, and I personally prefer > $(firstword). 3.82 had firstword. Will replace $(word 1) with $(firstword). regards, Dmitry