From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 23 Jan 2023 07:54:59 +0100 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1pJqjL-002rBq-VZ for lore@lore.pengutronix.de; Mon, 23 Jan 2023 07:54:59 +0100 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1pJqjK-0004H9-3h; Mon, 23 Jan 2023 07:54:58 +0100 Received: from mail.thorsis.com ([92.198.35.195]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pJqim-0004Gv-3K; Mon, 23 Jan 2023 07:54:24 +0100 Date: Mon, 23 Jan 2023 07:53:56 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thorsis.com; s=default; t=1674456862; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=TghMEaVwFCtYL3oq7QT+Yo3P2IRqb+H5FbgPQtwaQlk=; b=rIIYuDIO2UIWMRCkWDkhhYTiX3ExOZ26bw70EswiE1IBj8wBICLJGNSx3JinkML2tCREgH Da/tQS00raJw+NTntAoQqd8apNFbNPp9XwMH4fTSuv90/nrZ37HBXD5GvXGmPKfkGQH2Rp b3XAj2+hT6fy7ktabpiExAY7GlS3Ifvo/Q4uU/g4NH+5IkNgyinKc5oy8qfotbYNG2ROMx oW67pp+kYaY2XAFUR47mjvaapKawLI+4EmRPL2Yyq/DxCIn7K9Bydnh2FUtJseNxDfl7wo nOGhV/u7gx4HGULfv7OMYC3GamC2X3EzKoEs9TI29tzjYipyKxDyAfq0fejOPA== From: Alexander Dahl To: Uwe =?iso-8859-1?Q?Kleine-K=F6nig?= Message-ID: Mail-Followup-To: Uwe =?iso-8859-1?Q?Kleine-K=F6nig?= , ptxdist@pengutronix.de References: <20230119162132.133854-1-u.kleine-koenig@pengutronix.de> Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20230119162132.133854-1-u.kleine-koenig@pengutronix.de> X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.ext.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-2.8 required=4.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 Subject: Re: [ptxdist] [PATCH] doc: Files are added to _LICENSE_FILES X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: ptxdist@pengutronix.de Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Moin, Am Thu, Jan 19, 2023 at 05:21:32PM +0100 schrieb Uwe Kleine-König: > This fixes a copy-n-paste error. _LICENSE_FILES is supposed to > contain a list of files, not _LICENSE. > > Signed-off-by: Uwe Kleine-König > --- > doc/dev_licenses.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/doc/dev_licenses.rst b/doc/dev_licenses.rst > index 0bb1c8d77c5e..6aed9daaca97 100644 > --- a/doc/dev_licenses.rst > +++ b/doc/dev_licenses.rst > @@ -195,7 +195,7 @@ Adding license files to PTXdist packages > > The SPDX license identifier of the package goes into the ``_LICENSE`` > variable in the respective package rule file. > -All relevant files identified in the steps above are then added to the variable ``_LICENSE``, > +All relevant files identified in the steps above are then added to the variable ``_LICENSE_FILES``, > including a checksum so that PTXdist complains when they change. Reviewed-by: Alexander Dahl Greets Alex > > Example: > -- > 2.39.0 > >