From 64246329f5f9e05241a3a1b0abf51e0a3d591d17 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Tue, 2 Feb 2010 08:44:44 +0200 Subject: [PATCH] * Makefile.am: line40=>line35. decrease max amount of lines in a function --- Makefile.am | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 6087e246..3acaf559 100644 --- a/Makefile.am +++ b/Makefile.am @@ -37,9 +37,8 @@ cc10: # this warns about functions that are over 40 non-comment lines long, which is a # sign that they need some refactoring. requires the pmccabe tool. if # all is fine, it outputs nothing -line40: - @pmccabe -c `find -name '*.c' -o -name '*.cc'` | awk '($$5 > 40)' - +line35: + @pmccabe -c `find -name '*.c' -o -name '*.cc'` | awk '($$5 > 35)' EXTRA_DIST= \