From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753393AbbBSM07 (ORCPT ); Thu, 19 Feb 2015 07:26:59 -0500 Received: from mx1.redhat.com ([209.132.183.28]:54841 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752886AbbBSM05 (ORCPT ); Thu, 19 Feb 2015 07:26:57 -0500 Organization: Red Hat UK Ltd. Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SI4 1TE, United Kingdom. Registered in England and Wales under Company Registration No. 3798903 From: David Howells In-Reply-To: <1412773409-29102-1-git-send-email-mmarek@suse.cz> References: <1412773409-29102-1-git-send-email-mmarek@suse.cz> To: Michal Marek Cc: dhowells@redhat.com, keyrings@linux-nfs.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] X.509: Fix certificate gathering again MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <11026.1424348805.1@warthog.procyon.org.uk> Date: Thu, 19 Feb 2015 12:26:45 +0000 Message-ID: <11027.1424348805@warthog.procyon.org.uk> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Michal Marek wrote: > +X509_CERTIFICATES-y := $(wildcard *.x509) > +ifneq ($(objtree),$(srctree)) > +X509_CERTIFICATES-y += $(wildcard $(srctree)/*.x509) > +endif > +X509_CERTIFICATES-$(CONFIG_MODULE_SIG) += signing_key.x509 > +X509_CERTIFICATES := $(sort $(X509_CERTIFICATES-y)) What will happen if there's a "signing_key.x509" in the source tree when O= is used? David