From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id E7A43A0547 for ; Wed, 10 Aug 2022 21:26:18 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DF8C9410FB; Wed, 10 Aug 2022 21:26:18 +0200 (CEST) Received: from mail-pg1-f182.google.com (mail-pg1-f182.google.com [209.85.215.182]) by mails.dpdk.org (Postfix) with ESMTP id 7CDF44068E for ; Wed, 10 Aug 2022 21:26:16 +0200 (CEST) Received: by mail-pg1-f182.google.com with SMTP id q16so15192492pgq.6 for ; Wed, 10 Aug 2022 12:26:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:from:to:cc; bh=de5i9TuZ+8YtWhMppdYvogQ0GdnD9b2odYqM3GoqjVc=; b=poPyC60xJXjk16ggq1Y9ljQgL5yxpORi84XmpJOpqN+9K9pXPFsaiESHKMEdElLQIK DZtT+kHv/S4KSfwtYmo1qgPcftRTQaSbeYx4gPkNrjcaQmqEdx/l8u0+HIGmEx1DZhUx PYWtJRFmOgGwr75fsU2q5mdqArV1e1FDV15j4GIGW8/9c7IK6YlXLEllyk5Gjf7iuIca VTipb0KcSwyEWcekUhG9XEvHgyEwxVp1Bz60ts28fcPiCYgIxqgyU0FnHzvvIQtfuDI8 +GBUVF5j7k4yCgyAb09mubDyDsg7JuYLG3CZbiNQvpnl6tFsMLQeWa03GTlbbdh2OvCx 2XtA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:x-gm-message-state:from:to:cc; bh=de5i9TuZ+8YtWhMppdYvogQ0GdnD9b2odYqM3GoqjVc=; b=KGPrUCW5cKOnW/XfUuIYGq247aRC6u6xSYd5/q6O4w1LIeWOgScX4l/cht7bmkARiX xh3+fbl3ViJxcimsPM6Lh3IYrlxrypjYQGTWgh+PiQJE0T07p8ElTh44eEub6TSm7kGx AGqLbSNNaFjDBMoj2b3kxpgZzwUoPQzYE7KNYkslb1lJ9izuhN74sxiyEqzXzgTcsdJl H3uN9AXBKF3PmO5KD38YDnhwN2E2fomMIBY9HZO/4Vk4qZc6TfUqyQRUsMR0dT1p6PUx t6UZUT5bFMGLyaUquFNsBIGYldIPPDT3VDbNAcTzt81KH5pNBPY+/HKzSah/5cWA+DFR LrWg== X-Gm-Message-State: ACgBeo0yKhXzXqu0sZE0KMZlHprFIs7DCHjsOVNmNlT60AaTnwl9cXhh KzDRApZQlK1mSNF+eBzaZbOycg== X-Google-Smtp-Source: AA6agR43a+7pLwi+0eD2opjd0xHvyA/zQr2m0poY8ZWacgv/6Is5nmnl2YcbB5+HF1q1DbcbIJRxRg== X-Received: by 2002:a05:6a00:80b:b0:52e:c38f:f2c9 with SMTP id m11-20020a056a00080b00b0052ec38ff2c9mr24622836pfk.66.1660159575541; Wed, 10 Aug 2022 12:26:15 -0700 (PDT) Received: from hermes.local (204-195-120-218.wavecable.com. [204.195.120.218]) by smtp.gmail.com with ESMTPSA id l15-20020a170903120f00b0016ef05d4110sm13549482plh.108.2022.08.10.12.26.14 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 10 Aug 2022 12:26:15 -0700 (PDT) Date: Wed, 10 Aug 2022 12:26:06 -0700 From: Stephen Hemminger To: Dmitry Kozlyuk Cc: dev@dpdk.org, stable@dpdk.org, Bruce Richardson Subject: Re: [PATCH] build: enable developer mode for all working trees Message-ID: <20220810122606.645eb085@hermes.local> In-Reply-To: <20220810174058.604568-1-dmitry.kozliuk@gmail.com> References: <20220810174058.604568-1-dmitry.kozliuk@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org On Wed, 10 Aug 2022 20:40:58 +0300 Dmitry Kozlyuk wrote: > Developer mode was detected if `.git` was a directory. > Linked git working trees created by `git worktree add` > contain `.git` file instead of `.git` directory. > Developer mode was not detected for such directories. > Detect developer mode by the presence of `.git` path. > > Fixes: bc4617433845 ("build: enable a developer mode setting") > Cc: stable@dpdk.org > > Signed-off-by: Dmitry Kozlyuk Acked-by: Stephen Hemminger