You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by nw...@apache.org on 2019/03/22 22:34:59 UTC

[incubator-heron] branch master updated: Make cppckecker independ of pcre (#3224)

This is an automated email from the ASF dual-hosted git repository.

nwang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/master by this push:
     new 88cba61  Make cppckecker independ of pcre (#3224)
88cba61 is described below

commit 88cba617c403a026d110c118954fe2f4cc7fb2ab
Author: Ning Wang <nw...@twitter.com>
AuthorDate: Fri Mar 22 15:34:53 2019 -0700

    Make cppckecker independ of pcre (#3224)
---
 third_party/cppcheck/cppcheck.BUILD | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/third_party/cppcheck/cppcheck.BUILD b/third_party/cppcheck/cppcheck.BUILD
index abb38e4..db17532 100644
--- a/third_party/cppcheck/cppcheck.BUILD
+++ b/third_party/cppcheck/cppcheck.BUILD
@@ -4,7 +4,7 @@ package(default_visibility = ["//visibility:public"])
 
 install_script = "\n".join([
     "cd external/com_github_danmar_cppcheck",
-    "make SRCDIR=build CFGDIR=cfg HAVE_RULES=yes CXXFLAGS='-O2 -DNDEBUG -Wall -Wno-sign-compare -Wno-unused-function'",
+    "make SRCDIR=build CFGDIR=cfg CXXFLAGS='-O2 -DNDEBUG -Wall -Wno-sign-compare -Wno-unused-function'",
     "rm -rf ../../$(@D)/*",
     "cp -R $$(pwd)/* ../../$(@D)/",
 ])