v4l/scripts: Fix make checkpatch operation with in tree checkpatch.pl

Message ID 1257731097.6504.4.camel@palomino.walls.org (mailing list archive)
State Superseded, archived
Headers

Commit Message

Andy Walls Nov. 9, 2009, 1:44 a.m. UTC
  Mauro,

make checkpatch wasn't working for me.

I found that the new version of checkpatch.pl that's in the v4l/dvb tree
doesn't emit a version number unless explicitly requested.

This patch gets 'make checkpatch' working (and complaining again) for
me.

Regards,
Andy

Signed-off-by: Andy Walls <awalls@radix.net>





--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
  

Patch

diff -r d2aaff136907 v4l/scripts/check.pl
--- a/v4l/scripts/check.pl	Thu Nov 05 19:51:24 2009 -0500
+++ b/v4l/scripts/check.pl	Sun Nov 08 20:40:06 2009 -0500
@@ -56,11 +56,13 @@ 
 }
 close IN;
 
-my $intree_checkpatch = "scripts/checkpatch.pl --no-tree --strict";
+my $intree_checkpatch = "scripts/checkpatch.pl --version ";
 if (!open IN,"$intree_checkpatch|") {
 	$intree_checkpatch = "v4l/".$intree_checkpatch;
 	open IN,"$intree_checkpatch|";
 }
+$intree_checkpatch =~ s/--version/--no-tree --strict/;
+
 while (<IN>) {
 	tr/A-Z/a-z/;
 	if (m/version\s*:\s*([\d\.]+)/) {