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 <awa...@radix.net>



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\.]+)/) {


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

Reply via email to