commit | 55748612fc4537b401358fdafe9f3a4f33b2fede | [log] [tgz] |
---|---|---|
author | Piotr Sikora <piotrsikora@google.com> | Sun Oct 11 14:52:08 2015 -0700 |
committer | Piotr Sikora <piotrsikora@google.com> | Sun Oct 11 14:52:08 2015 -0700 |
tree | a3f1f5d5daecb33ea23e23fc6e75380ce4f8ce7e | |
parent | 8c7b19e1ffd5d8ed6b7d915fbc99b7a54613c88e [diff] |
Brotli: fix build. /bin/sh's equal operator is "=" not "==". Reported by rkd77 on GitHub (issue #3). Signed-off-by: Piotr Sikora <piotrsikora@google.com>
diff --git a/auto/feature b/auto/feature index 92294b7..eede183 100644 --- a/auto/feature +++ b/auto/feature
@@ -25,7 +25,7 @@ done fi -if [ "$ngx_feature_cpp" == "yes" ]; then +if [ "$ngx_feature_cpp" = "yes" ]; then NGX_AUTOTEST_EXT=cc else NGX_AUTOTEST_EXT=c