Skip to content

Commit

Permalink
fix: remove bison from the required tools when building emqx
Browse files Browse the repository at this point in the history
  • Loading branch information
terry-xiaoyu committed May 21, 2022
1 parent efd6461 commit 7bc2d9e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/emqx_rule_engine/i18n/emqx_rule_engine_schema.conf
Expand Up @@ -242,7 +242,7 @@ of the rule, then the string "undefined" is used.
rule_engine_jq_function_default_timeout {
desc {
en: "Default timeout for the `jq` rule engine function"
zh: 规则引擎内建函数 `jq` 默认时间限制
zh: "规则引擎内建函数 `jq` 默认时间限制"
}
label: {
en: "Rule engine jq function default timeout"
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Expand Up @@ -611,7 +611,7 @@ defmodule EMQXUmbrella.MixProject do

defp jq_dep() do
if enable_jq?(),
do: [{:jq, github: "emqx/jq", tag: "v0.3.0", override: true}],
do: [{:jq, github: "emqx/jq", tag: "v0.3.1", override: true}],
else: []
end

Expand Down
2 changes: 1 addition & 1 deletion rebar.config.erl
Expand Up @@ -41,7 +41,7 @@ quicer() ->
{quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.9"}}}.

jq() ->
{jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.0"}}}.
{jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.1"}}}.

deps(Config) ->
{deps, OldDeps} = lists:keyfind(deps, 1, Config),
Expand Down
2 changes: 1 addition & 1 deletion scripts/prepare-build-deps.sh
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail

AUTO_INSTALL_BUILD_DEPS="${AUTO_INSTALL_BUILD_DEPS:-0}"

required_packages_mac_osx="freetds unixodbc bison"
required_packages_mac_osx="freetds unixodbc"
required_cmds_mac_osx="curl zip unzip autoconf automake cmake openssl"

dependency_missing() {
Expand Down

0 comments on commit 7bc2d9e

Please sign in to comment.