From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 19 Feb 2016 01:40:29 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,469,1449561600"; d="scan'208";a="919200233" Received: from dwdohert-dpdk.ir.intel.com ([163.33.210.69]) by fmsmga002.fm.intel.com with ESMTP; 19 Feb 2016 01:40:27 -0800 To: Thomas Monjalon References: <1455823300-11675-1-git-send-email-thomas.monjalon@6wind.com> From: Declan Doherty Message-ID: <56C6E275.7090207@intel.com> Date: Fri, 19 Feb 2016 09:37:57 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.0 MIME-Version: 1.0 In-Reply-To: <1455823300-11675-1-git-send-email-thomas.monjalon@6wind.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] aesni_mb: fix build clean X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Feb 2016 09:40:29 -0000 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