From patchwork Sat Jan 9 21:34:40 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cole Robinson X-Patchwork-Id: 59434 Delivered-To: patch@linaro.org Received: by 10.112.130.2 with SMTP id oa2csp1293975lbb; Sat, 9 Jan 2016 13:37:10 -0800 (PST) X-Received: by 10.28.176.133 with SMTP id z127mr5867898wme.22.1452375430086; Sat, 09 Jan 2016 13:37:10 -0800 (PST) Return-Path: Received: from mx3-phx2.redhat.com (mx3-phx2.redhat.com. [209.132.183.24]) by mx.google.com with ESMTPS id c133si9535546wmf.44.2016.01.09.13.37.09 (version=TLS1 cipher=AES128-SHA bits=128/128); Sat, 09 Jan 2016 13:37:10 -0800 (PST) Received-SPF: pass (google.com: domain of libvir-list-bounces@redhat.com designates 209.132.183.24 as permitted sender) client-ip=209.132.183.24; Authentication-Results: mx.google.com; spf=pass (google.com: domain of libvir-list-bounces@redhat.com designates 209.132.183.24 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by mx3-phx2.redhat.com (8.13.8/8.13.8) with ESMTP id u09LYhBc018366; Sat, 9 Jan 2016 16:34:43 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id u09LYg1r004337 for ; Sat, 9 Jan 2016 16:34:42 -0500 Received: from colepc.redhat.com (ovpn-113-33.phx2.redhat.com [10.3.113.33]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u09LYfA0007156; Sat, 9 Jan 2016 16:34:41 -0500 From: Cole Robinson To: libvirt-list@redhat.com Date: Sat, 9 Jan 2016 16:34:40 -0500 Message-Id: <03569fda63d6dd8cb5cd63c34eb23faf5193da74.1452375268.git.crobinso@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH] cfg.mk: Drop period after filename for indent failures X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com The period makes it more difficult to copy/paste the errant filename for manual fixup --- Pushed as trivial cfg.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.5.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list diff --git a/cfg.mk b/cfg.mk index cf3f36c..b009b28 100644 --- a/cfg.mk +++ b/cfg.mk @@ -1095,7 +1095,7 @@ test-wrap-argv: res=$$? ; \ rm $${file}-t ; \ test $$res == 0 || { \ - echo "$(ME): Incorrect line wrapping in $$file." 1>&2; \ + echo "$(ME): Incorrect line wrapping in $$file" 1>&2; \ echo "$(ME): Use test-wrap-argv.pl to wrap test data files" 1>&2; \ exit 1; } \ done