From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-we0-f182.google.com (mail-we0-f182.google.com
 [74.125.82.182]) by dpdk.org (Postfix) with ESMTP id B94D768AE
 for <dev@dpdk.org>; Fri,  1 Aug 2014 21:26:59 +0200 (CEST)
Received: by mail-we0-f182.google.com with SMTP id k48so4823522wev.41
 for <dev@dpdk.org>; Fri, 01 Aug 2014 12:29:05 -0700 (PDT)
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:content-type;
 bh=siBFkigTIWQK/Poy2fPMG+933ah4fUqc3et8k7U6zdc=;
 b=KrFDP5czfPIhal7BR5uvSUYyAAB78ZbBZ9cNBjYvShpTwKMfPjwwzD4LtIjnC3uFO9
 zf+Wt65n/7Z/8vseprAkzIxAQJBr3rXqPOdHvUfQy3eIDsyEip59HjinWO+SFuCzBd/o
 A67vzIXA4IfxthD57nU2Gq/UHgYLaDOj+PEXZIfwyWVzR8BGykO5J4k9U3pnVKdLUwfk
 DcIxYKxGDMVnrgK5M8loXAkB7hEZj1Ur9rXOQowXEdctK6x4Q62xXSveXyb5dzDnr2e7
 Cdh+r5p/R3L/WMRUocWQK4fi8Hri8GpfZUaTukBmGbloYs+8YooBdf72A59YgvbxtKsS
 XkDA==
X-Gm-Message-State: ALoCoQkuQQr+ho1k7003xNiG0lX6yd6cAgsNrQGp0IIhgE27ZwhDuIZD34cw8e89rGqX904Kpo7T
X-Received: by 10.194.104.234 with SMTP id gh10mr11287141wjb.66.1406921345333; 
 Fri, 01 Aug 2014 12:29:05 -0700 (PDT)
Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136])
 by mx.google.com with ESMTPSA id eh7sm20841558wjd.32.2014.08.01.12.29.04
 for <multiple recipients>
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Fri, 01 Aug 2014 12:29:04 -0700 (PDT)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: Julien Cretin <julien.cretin@trust-in-soft.com>
Date: Fri, 01 Aug 2014 21:28:53 +0200
Message-ID: <2764645.XhU1T6HqyO@xps13>
Organization: 6WIND
User-Agent: KMail/4.13.3 (Linux/3.15.7-1-ARCH; KDE/4.13.3; x86_64; ; )
In-Reply-To: <1406912161-5659-1-git-send-email-julien.cretin@trust-in-soft.com>
References: <1406912161-5659-1-git-send-email-julien.cretin@trust-in-soft.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Cc: dev@dpdk.org
Subject: Re: [dpdk-dev] [PATCH] kni: fix missing backslash in Makefile
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Fri, 01 Aug 2014 19:27:00 -0000

Hi Julien,

2014-08-01 18:56, Julien Cretin:
> With GNU Make 3.81 on Ubuntu 14.04, I get:
> lib/librte_eal/linuxapp/kni/Makefile:49: *** unterminated call to function `shell': missing `)'.  Stop.
> 
> Signed-off-by: Julien Cretin <julien.cretin@trust-in-soft.com>

> -UBUNTU_KERNEL_CODE := $(shell cut -d' ' -f2 /proc/version_signature |
> +UBUNTU_KERNEL_CODE := $(shell cut -d' ' -f2 /proc/version_signature | \
>                          cut -d- -f1,2 | tr .- $(comma))

My fault, I forgot the backslash when splitting line.

Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>

Applied.

Thanks for the quick test and report.
-- 
Thomas