From patchwork Fri Sep 16 20:50:56 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Lezcano X-Patchwork-Id: 4150 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 0FDFC23EFD for ; Fri, 16 Sep 2011 20:51:01 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id 0550DA18B44 for ; Fri, 16 Sep 2011 20:51:01 +0000 (UTC) Received: by mail-fx0-f52.google.com with SMTP id 23so2976533fxe.11 for ; Fri, 16 Sep 2011 13:51:00 -0700 (PDT) Received: by 10.223.5.76 with SMTP id 12mr321169fau.103.1316206260905; Fri, 16 Sep 2011 13:51:00 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.11.8 with SMTP id m8cs140499lab; Fri, 16 Sep 2011 13:51:00 -0700 (PDT) Received: by 10.216.167.8 with SMTP id h8mr1229859wel.5.1316206260449; Fri, 16 Sep 2011 13:51:00 -0700 (PDT) Received: from mtagate2.uk.ibm.com (mtagate2.uk.ibm.com [194.196.100.162]) by mx.google.com with ESMTPS id h62si12338205wed.30.2011.09.16.13.50.59 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 16 Sep 2011 13:50:59 -0700 (PDT) Received-SPF: neutral (google.com: 194.196.100.162 is neither permitted nor denied by best guess record for domain of daniel.lezcano@linaro.org) client-ip=194.196.100.162; Authentication-Results: mx.google.com; spf=neutral (google.com: 194.196.100.162 is neither permitted nor denied by best guess record for domain of daniel.lezcano@linaro.org) smtp.mail=daniel.lezcano@linaro.org Received: from d06nrmr1307.portsmouth.uk.ibm.com (d06nrmr1307.portsmouth.uk.ibm.com [9.149.38.129]) by mtagate2.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p8GKowNR021004; Fri, 16 Sep 2011 20:50:58 GMT Received: from d06av01.portsmouth.uk.ibm.com (d06av01.portsmouth.uk.ibm.com [9.149.37.212]) by d06nrmr1307.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p8GKow1J2429058; Fri, 16 Sep 2011 21:50:58 +0100 Received: from d06av01.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av01.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p8GKowRW025481; Fri, 16 Sep 2011 14:50:58 -0600 Received: from smtp.lab.toulouse-stg.fr.ibm.com (syslog.lab.toulouse-stg.fr.ibm.com [9.101.4.104]) by d06av01.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p8GKow5g025478; Fri, 16 Sep 2011 14:50:58 -0600 Received: from localhost.localdomain (sig-9-146-237-162.de.ibm.com [9.146.237.162]) by smtp.lab.toulouse-stg.fr.ibm.com (Postfix) with ESMTP id 529B8211020; Fri, 16 Sep 2011 22:50:57 +0200 (CEST) From: Daniel Lezcano To: linaro-dev@lists.linaro.org Cc: paul.larson@linaro.org Subject: [pm-qa 2/2] prevent spurious char with the echo file Date: Fri, 16 Sep 2011 22:50:56 +0200 Message-Id: <1316206256-11052-2-git-send-email-daniel.lezcano@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1316206256-11052-1-git-send-email-daniel.lezcano@linaro.org> References: <1316206256-11052-1-git-send-email-daniel.lezcano@linaro.org> Signed-off-by: Daniel Lezcano --- cpufreq/Makefile | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/cpufreq/Makefile b/cpufreq/Makefile index 9c9133e..e9050e4 100644 --- a/cpufreq/Makefile +++ b/cpufreq/Makefile @@ -28,7 +28,8 @@ LOG=$(TST:.sh=.log) check: uncheck $(LOG) %.log: %.sh - @echo -e "###\n### $(<:.sh=):" + @echo "###" + @echo "### $(<:.sh=):" @echo -n "### "; cat $(<:.sh=.txt); echo "###" @./$< 2> $@