Author: kremenek
Date: Wed Jan 23 15:22:14 2013
New Revision: 173294

URL: http://llvm.org/viewvc/llvm-project?rev=173294&view=rev
Log:
Always process an index.html file if we have HTML output.  Patch by Justin 
Bogner.

Modified:
    cfe/trunk/tools/scan-build/scan-build

Modified: cfe/trunk/tools/scan-build/scan-build
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/scan-build/scan-build?rev=173294&r1=173293&r2=173294&view=diff
==============================================================================
--- cfe/trunk/tools/scan-build/scan-build (original)
+++ cfe/trunk/tools/scan-build/scan-build Wed Jan 23 15:22:14 2013
@@ -1563,7 +1563,7 @@
     Diag "Analysis run complete.\n";
     Diag "Analysis results (plist files) deposited in '$HtmlDir'\n";
   }
-  elsif ($OutputFormat =~ /html/) {
+  if ($OutputFormat =~ /html/) {
     # Postprocess the HTML directory.
     my $NumBugs = Postprocess($HtmlDir, $BaseDir, $AnalyzerStats);
 


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to