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=-3.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=no 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 9C6B2C4361B for ; Fri, 11 Dec 2020 20:06:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4A2C92311A for ; Fri, 11 Dec 2020 20:06:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2395091AbgLKSeA (ORCPT ); Fri, 11 Dec 2020 13:34:00 -0500 Received: from smtp-bc09.mail.infomaniak.ch ([45.157.188.9]:39011 "EHLO smtp-bc09.mail.infomaniak.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2394744AbgLKSd1 (ORCPT ); Fri, 11 Dec 2020 13:33:27 -0500 Received: from smtp-2-0001.mail.infomaniak.ch (unknown [10.5.36.108]) by smtp-2-3000.mail.infomaniak.ch (Postfix) with ESMTPS id 4Cszsp6KkXzlh8TL; Fri, 11 Dec 2020 19:32:30 +0100 (CET) Received: from ns3096276.ip-94-23-54.eu (unknown [23.97.221.149]) by smtp-2-0001.mail.infomaniak.ch (Postfix) with ESMTPA id 4Cszsm6CK0zlh8TF; Fri, 11 Dec 2020 19:32:28 +0100 (CET) Subject: Re: [PATCH v1 4/9] certs: Check that builtin blacklist hashes are valid To: David Howells Cc: David Woodhouse , "David S . Miller" , Herbert Xu , James Morris , Jarkko Sakkinen , =?UTF-8?Q?Micka=c3=abl_Sala=c3=bcn?= , Mimi Zohar , "Serge E . Hallyn" , keyrings@vger.kernel.org, linux-crypto@vger.kernel.org, linux-integrity@vger.kernel.org, linux-kernel@vger.kernel.org, linux-security-module@vger.kernel.org References: <20201120180426.922572-5-mic@digikod.net> <20201120180426.922572-1-mic@digikod.net> <1221725.1607515111@warthog.procyon.org.uk> From: =?UTF-8?Q?Micka=c3=abl_Sala=c3=bcn?= Message-ID: <492d0fe7-826a-ac8f-bc41-29718ab3bb60@digikod.net> Date: Fri, 11 Dec 2020 19:32:28 +0100 User-Agent: MIME-Version: 1.0 In-Reply-To: <1221725.1607515111@warthog.procyon.org.uk> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 09/12/2020 12:58, David Howells wrote: > Mickaël Salaün wrote: > >> + cmd_check_blacklist_hashes = $(AWK) -f scripts/check-blacklist-hashes.awk $(2); touch $@ > > The script name needs prefixing with $(srctree)/ so that it can be used with > alternative build directories. Right > > Note that doesn't apply to scripts/extract-cert in the same makefile as that's > a built program and is to be found in the build dir, not the sources. > > Btw, I'm pulling some of your cleanups/fixes into my fixes branch. OK, thanks. I'll send a new patch series rebased on your branch. > > David >