From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33425) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bQB1R-00086E-2h for qemu-devel@nongnu.org; Thu, 21 Jul 2016 06:16:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bQB1N-0007gU-5q for qemu-devel@nongnu.org; Thu, 21 Jul 2016 06:16:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41961) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bQB1M-0007gO-W7 for qemu-devel@nongnu.org; Thu, 21 Jul 2016 06:16:01 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id A746B3B70D for ; Thu, 21 Jul 2016 10:16:00 +0000 (UTC) From: Peter Xu Date: Thu, 21 Jul 2016 18:15:54 +0800 Message-Id: <1469096154-16085-1-git-send-email-peterx@redhat.com> Subject: [Qemu-devel] [PATCH] checkpatch: fix break by renaming README List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peterx@redhat.com Without this, we cannot run checkpatch.pl under QEMU root directory. Signed-off-by: Peter Xu --- scripts/checkpatch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index afa7f79..8247305 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -286,7 +286,7 @@ sub top_of_kernel_tree { my @tree_check = ( "COPYING", "MAINTAINERS", "Makefile", - "README", "docs", "VERSION", + "README.md", "docs", "VERSION", "vl.c" ); -- 2.4.11