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:38:40 UTC

[incubator-heron] branch release/0.20.1-incubating-rc2 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 release/0.20.1-incubating-rc2
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/release/0.20.1-incubating-rc2 by this push:
     new e6134da  Make cppckecker independ of pcre (#3224)
e6134da is described below

commit e6134da336fa290fa1b40972bc747a7507948d8a
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)/",
 ])