From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH] mk: fix build clean Date: Fri, 17 Jun 2016 15:22:49 +0200 Message-ID: <1466169769-18456-1-git-send-email-thomas.monjalon@6wind.com> Cc: dev@dpdk.org To: declan.doherty@intel.com, pablo.de.lara.guarch@intel.com Return-path: Received: from mail-wm0-f48.google.com (mail-wm0-f48.google.com [74.125.82.48]) by dpdk.org (Postfix) with ESMTP id 72192CF3F for ; Fri, 17 Jun 2016 15:22:56 +0200 (CEST) Received: by mail-wm0-f48.google.com with SMTP id f126so88976155wma.1 for ; Fri, 17 Jun 2016 06:22:56 -0700 (PDT) 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" The variables AESNI_MULTI_BUFFER_LIB_PATH and LIBSSO_PATH are not required for "make clean". It is the same fix as in the commit e277b2397. Signed-off-by: Thomas Monjalon --- drivers/crypto/aesni_gcm/Makefile | 2 ++ drivers/crypto/snow3g/Makefile | 2 ++ 2 files changed, 4 insertions(+) diff --git a/drivers/crypto/aesni_gcm/Makefile b/drivers/crypto/aesni_gcm/Makefile index aa2621b..3c70ee8 100644 --- a/drivers/crypto/aesni_gcm/Makefile +++ b/drivers/crypto/aesni_gcm/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_gcm.a diff --git a/drivers/crypto/snow3g/Makefile b/drivers/crypto/snow3g/Makefile index ee58270..17b15ef 100644 --- a/drivers/crypto/snow3g/Makefile +++ b/drivers/crypto/snow3g/Makefile @@ -30,9 +30,11 @@ include $(RTE_SDK)/mk/rte.vars.mk +ifneq ($(MAKECMDGOALS),clean) ifeq ($(LIBSSO_PATH),) $(error "Please define LIBSSO_PATH environment variable") endif +endif # library name LIB = librte_pmd_snow3g.a -- 2.7.0