From: Artem Bityutskiy Date: Thu, 24 Apr 2014 23:15:10 +0000 (-0700) Subject: aiaiai-checker: use --no-data for smatch X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=2d95b45a802eeb70dcee0d254bb9a81f0be6dfa5;p=users%2Fdedekind%2Faiaiai.git aiaiai-checker: use --no-data for smatch Otherwise smatch complains about missing data, which will show up in diff-log when new files are added. Signed-off-by: Artem Bityutskiy --- diff --git a/helpers/aiaiai-checker b/helpers/aiaiai-checker index b3f7274..6aa8e79 100755 --- a/helpers/aiaiai-checker +++ b/helpers/aiaiai-checker @@ -185,7 +185,7 @@ fi if [ -n "$run_smatch" ]; then # Smatch uses stderr for reporting about internal issues and stdout for # check results - smatch --project=kernel "$@" > "$tmpdir/smatch" 2>/dev/null & + smatch --no-data --project=kernel "$@" > "$tmpdir/smatch" 2>/dev/null & pid_smatch="$!" fi if [ -n "$run_cppcheck" ]; then