From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 30F1A2B92 for ; Fri, 20 Jul 2018 22:56:26 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id BE98921144; Fri, 20 Jul 2018 16:56:25 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Fri, 20 Jul 2018 16:56:25 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=vqIVz/c9k0vHdzj4yrhbnZ0ZU/ R2gy4b+2bXVc6D/GQ=; b=LCqQi+i1Js5uKgFrELYSEYMj8irU6tWuhltYIfAFBx DVwxktXoJLe3Z/jrub5xjxI66+Bpb7QKFYsxMPNl9BQV5/Sr8yVzhlMlys53TYGY nqyp6Rb4zCC/RRu2Jw8LTpCpBmgOMNN0nQAcPy20gNuFe/m3lhc9+VX3Xz+5AGm4 E= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=vqIVz/ c9k0vHdzj4yrhbnZ0ZU/R2gy4b+2bXVc6D/GQ=; b=ZrsEVXwXaSwYav8zW24RDJ D2cc9Ei+8ieJuu+c2JIIELqzMiwQcTp7E9hQPa1boqG+VoIaIoFUkejnbtz5swYo gAHnj3YXvnJRw/9ab3fdKPoEU8wolTL3BHLV/kJt+jl9EaRMEEezlHg0U3kMKuch 4i3CugjOjKziwqqs1iAj/IAMUqw1RIxJEZ6T024cJWwikNzZ+EPvF/KhoHnWZWLc /JZTL4BALwwbtC2QjGKIwrVB9ZNVfmX3RyRCpjpWwYNaqXYDCaDgdH3w7v1uZZBy Oh6rl/qa8sfoTObplUxCs5WrqmiNXpS/cEQlwscxODO/g+X6rGW8jWXhlauGvTbQ == X-ME-Proxy: X-ME-Sender: Received: from xps.localnet (unknown [207.232.18.42]) by mail.messagingengine.com (Postfix) with ESMTPA id E0AEB1025C; Fri, 20 Jul 2018 16:56:22 -0400 (EDT) From: Thomas Monjalon To: dev@dpdk.org Cc: Neil Horman Date: Fri, 20 Jul 2018 22:56:20 +0200 Message-ID: <3233150.zM1BvvQIJO@xps> In-Reply-To: <20180720182538.GA21786@neilslaptop.think-freely.org> References: <20180720114103.18211-1-thomas@monjalon.net> <20180720182538.GA21786@neilslaptop.think-freely.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] devtools: fix checkpatch for filename with space X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jul 2018 20:56:26 -0000 20/07/2018 20:25, Neil Horman: > On Fri, Jul 20, 2018 at 01:41:03PM +0200, Thomas Monjalon wrote: > > If the patch filename or the temporary file path have a space > > in their name, the script checkpatches.sh does not work. > > The variables for the filenames must be enclosed in quotes > > in order to preserve spaces. > > > > Fixes: 4bec48184e33 ("devtools: add checks for ABI symbol addition") > > > > Signed-off-by: Thomas Monjalon > Acked-by: Neil Horman > > > --- > > > > Strangely, I did a fix for check-symbol-change.sh and I forgot > > to fix checkpatches.sh. > > > > --- Applied