summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorAlon Bar-Lev <alon.barlev@gmail.com>2015-11-16 01:27:48 +0200
committerAlon Bar-Lev <alon.barlev@gmail.com>2015-11-16 01:27:48 +0200
commit5dc25a7a7fbcbf7cb146243c5fd7871dd42de3a8 (patch)
tree863296b4a19c367eb4f2dce30c2f84dc65f6f141 /configure.ac
parent67ccd5b2d3c331f0cfabc11950f24101a99fd0f0 (diff)
build: do not fail if user is warned
Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index c8a28297d4..f9e47ea1e7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -156,5 +156,5 @@ AC_CONFIG_FILES([
])
AC_OUTPUT
-test "${with_math}" != "yes" && AC_MSG_WARN([You are building without math. math allows accurate calculations. It should be enabled.])
-test "${with_zlib}" != "yes" && AC_MSG_WARN([You are building without zlib. zlib allows netdata to trasnfer a lot less data with web clients. It should be enabled.])
+test "${with_math}" != "yes" && AC_MSG_WARN([You are building without math. math allows accurate calculations. It should be enabled.]) || :
+test "${with_zlib}" != "yes" && AC_MSG_WARN([You are building without zlib. zlib allows netdata to trasnfer a lot less data with web clients. It should be enabled.]) || :