From mboxrd@z Thu Jan 1 00:00:00 1970 From: Declan Doherty Subject: Re: [PATCH] aesni_mb: fix build clean Date: Fri, 19 Feb 2016 09:37:57 +0000 Message-ID: <56C6E275.7090207@intel.com> References: <1455823300-11675-1-git-send-email-thomas.monjalon@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org To: Thomas Monjalon Return-path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 7395AC48E for ; Fri, 19 Feb 2016 10:40:29 +0100 (CET) In-Reply-To: <1455823300-11675-1-git-send-email-thomas.monjalon@6wind.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 18/02/16 19:21, Thomas Monjalon wrote: > The variable AESNI_MULTI_BUFFER_LIB_PATH is not required for > make clean > > Signed-off-by: Thomas Monjalon > --- > drivers/crypto/aesni_mb/Makefile | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/crypto/aesni_mb/Makefile b/drivers/crypto/aesni_mb/Makefile > index 3bf83d1..ec65291 100644 > --- a/drivers/crypto/aesni_mb/Makefile > +++ b/drivers/crypto/aesni_mb/Makefile > @@ -30,9 +30,11 @@ > > include $(RTE_SDK)/mk/rte.vars.mk > > +ifneq ($(MAKECMDGOALS),clean) > ifeq ($(AESNI_MULTI_BUFFER_LIB_PATH),) > $(error "Please define AESNI_MULTI_BUFFER_LIB_PATH environment variable") > endif > +endif > > # library name > LIB = librte_pmd_aesni_mb.a > Acked-by: Declan Doherty