From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f50.google.com (mail-wm0-f50.google.com [74.125.82.50]) by dpdk.org (Postfix) with ESMTP id 00A212B96 for ; Fri, 11 Mar 2016 16:19:57 +0100 (CET) Received: by mail-wm0-f50.google.com with SMTP id p65so21823416wmp.0 for ; Fri, 11 Mar 2016 07:19:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=+zAU2axnv1xhx/nF3BvIpUfpFX7rE9b3B4BqSu/lEIc=; b=GTBg3wk2zR6YJHqrZ4nMlkNPhMB2k1Dj9kFLx7wSOg0M7aH5hChI7oJKbLCtPt3xhT /E6yjo1qtEL71IGHPREoY76wic9dIcfQBDmxdog2qUlta009qalER4XaCyBkMPP7kNYK bKQ6RtBEiRAXEsI0Yj3OgmXbriBxPlUgayfz02KQa+BaohV8WXHI1YdK3/hpZuZRCSHn /AWue/JS+GSeTnaWHCtdEaRIZe8pGgcxj5+igaJU2MKS66SuqtuZgXS/U01iPAT5pWce 0ITv/8FszS+1bVw983lfOax5JcnCUlGlz/jkvXrbgHwfEY7qOZVI5lwiDlBc2+/X8H1E NR0Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding; bh=+zAU2axnv1xhx/nF3BvIpUfpFX7rE9b3B4BqSu/lEIc=; b=QRCCSInr3eXzkysvnpL/T6HTqTb6GRDjT+o7PfTWlD+fVxYYHUS24IZqmV1AzKjQhq ElsSvtS1H9cMl3YRuEd6PvwUf0e9K8eTD2H06HkHtE0gjfJgLgUvfgbXa1RmNvniKJPa chOixO0XYPL5kxsQEYNS2MNHFmFQVATLqy+hQIQ6+M4QXgZm3WL6/sjGQCt4J3+D9VEs OICmhFQRidWjSJyhdaXYjCCpcwJB0T3gLR668bmQRZQoZ/ZOuS4PSFHEwUpD8p4+8Skd YLg2s23AFCaAZ2mXoxSIA7SkXy3LNjXAhS4wxEnRtCDohsOcX+W65R8XGJQB83t2XL+M z/dQ== X-Gm-Message-State: AD7BkJKOPIQuRS5Udbg7QPp8hvjHKWxos3j5tb8/V2UR5kK0r0IyzaWZd0GBOzwGnNNSoWnv X-Received: by 10.194.86.68 with SMTP id n4mr11683355wjz.150.1457709596869; Fri, 11 Mar 2016 07:19:56 -0800 (PST) Received: from xps13.localnet (91.111.75.86.rev.sfr.net. [86.75.111.91]) by smtp.gmail.com with ESMTPSA id bg1sm8968868wjc.27.2016.03.11.07.19.56 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 11 Mar 2016 07:19:56 -0800 (PST) From: Thomas Monjalon To: Sergio Gonzalez Monroy Date: Fri, 11 Mar 2016 16:18:13 +0100 Message-ID: <1887100.J7pSTVUgvn@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <56E2E03D.2010901@intel.com> References: <20160311123910.779f9c2e@jvn> <2101263.CINWvX51Cb@xps13> <56E2E03D.2010901@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org, Jan Viktorin Subject: Re: [dpdk-dev] Fw: dpdk-armv7 - Build # 342 - Failure! 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, 11 Mar 2016 15:19:57 -0000 2016-03-11 15:11, Sergio Gonzalez Monroy: > On 11/03/2016 15:04, Thomas Monjalon wrote: > > 2016-03-11 14:53, Sergio Gonzalez Monroy: > >> examples/Makefile: > >> +ifeq ($(CONFIG_RTE_LIBRTE_ACL),y) > >> +ifeq ($(CONFIG_RTE_LIBRTE_HASH),y) > >> +ifeq ($(CONFIG_RTE_LIBRTE_LPM),y) > >> DIRS-$(CONFIG_RTE_LIBRTE_CRYPTODEV) += ipsec-secgw > >> +endif > >> +endif > >> +endif > > You can do it in one line: > > ifeq ($(CONFIG_RTE_LIBRTE_ACL)$(CONFIG_RTE_LIBRTE_HASH)$(CONFIG_RTE_LIBRTE_LPM),yyy) > > The line above goes to 85 chars, are you ok with that? or do I split it > in two lines? OK in one line