From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f171.google.com (mail-wr0-f171.google.com [209.85.128.171]) by dpdk.org (Postfix) with ESMTP id 3E52B101B for ; Mon, 27 Mar 2017 23:45:04 +0200 (CEST) Received: by mail-wr0-f171.google.com with SMTP id w43so63773019wrb.0 for ; Mon, 27 Mar 2017 14:45:04 -0700 (PDT) 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:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=MzmYAHmxRtAnEtbjmiUCZSywuN3bQUT/pGt39fQRyvM=; b=MYqvOyv17U/SOhl43MLw1DuJjpwOOl9mFzIbJ4qJ3+v1KfzlnIxyLFKn++ngtvASh9 gUOaQ2WjA5W3J+KXfh5kpFawVljQPEVxpVXZVqAFOHQH5OF+TtCHajAMiEN0pbXmZleT XB9aB/AHJNLVeUogSXli5ZG+TEO3JDTWi+LytTCyCJCfva0M4lDS7khq8Cl7CpxbZm6M EbLyFrZRUZjv8IgPKTRYrPJ9SGg0z+eorUhFkzoTXqpICMgvnN8DVogtJ/1rG9cRhN6m zNFRHoI7tRvjUCJ1JcTExynMUHPVtRCOuZEOdgZ0IQiUgi2JmgA6OkdqxjQsuOpZEP8+ Qkog== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=MzmYAHmxRtAnEtbjmiUCZSywuN3bQUT/pGt39fQRyvM=; b=Tiq/xECx3OuKG+LJpVBXNFADD3xUmtA+CVEMuBHobYaMEpPriJrT+t7Jc+Y7XefDYL 5tuRXuvDuO+aphGWUl1R6xFmrNked/8v/vnBut7NgSMS/gRLYq6SsLpnXBfBaTqnhX+j HtSwewEduR6bzQsYCzdeE7jGdy9ydq0tCSDIthKc+Zd3j/n18Mnk2AhgLu1+jIiNDeHh Jo2RBHrayE658RVBa+aX82/Racw35ma/KUDmw5k1xFBFNFAyAhHVbeLpWE8LHmcPEHTF a/cWruE6RxF2+1Ac/Ymcx5x0rpaVHI6rybjNYeLpEOaum19m/KQFuzmut2oN6b91fOkz KBjA== X-Gm-Message-State: AFeK/H0B26WYMRkt3dLpgZpE38zhMi3N+4BK6d2NLFVjTpdG78DZHgr6US33/Z+MQOrKSAnl X-Received: by 10.223.178.182 with SMTP id g51mr14257531wrd.12.1490651103839; Mon, 27 Mar 2017 14:45:03 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id c17sm2243210wre.30.2017.03.27.14.45.02 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 27 Mar 2017 14:45:02 -0700 (PDT) From: Thomas Monjalon To: Bruce Richardson Cc: dev@dpdk.org Date: Mon, 27 Mar 2017 23:45:01 +0200 Message-ID: <6088978.UBRGF4N90V@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <20170323150926.16818-1-bruce.richardson@intel.com> References: <20170323150926.16818-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] devtools: make log checking script BSD-compatible 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: Mon, 27 Mar 2017 21:45:04 -0000 2017-03-23 15:09, Bruce Richardson: > The -e flag to readlink doesn't exist on FreeBSD so change it to -f instead > which is present on both BSD and Linux. Error reported is: > > readlink: illegal option -- e > usage: readlink [-fn] [file ...] > usage: dirname string [...] > ./devtools/check-git-log.sh: /git-log-fixes.sh: not found > > Fixes: 814c8822ef7b ("scripts: check cc stable mailing list in commit") > > Signed-off-by: Bruce Richardson [...] > -selfdir=$(dirname $(readlink -e $0)) > +selfdir=$(dirname $(readlink -f $0)) You win the prize of the shortest fix with only one letter! :) Applied, thanks