Don't store reports when scan-build's build command matches /autogen/ (same as configure).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@128723 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2011-04-01 18:47:06 +00:00
Родитель a35d5d7700
Коммит 9e4a1bb008
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -201,8 +201,8 @@ sub SetHtmlEnv {
die "No build command." if (scalar(@$Args) == 0);
my $Cmd = $$Args[0];
if ($Cmd =~ /configure/) {
if ($Cmd =~ /configure/ || $Cmd =~ /autogen/) {
return;
}