]> arthur.barton.de Git - netdata.git/commitdiff
build: do not fail if user is warned
authorAlon Bar-Lev <alon.barlev@gmail.com>
Sun, 15 Nov 2015 23:27:48 +0000 (01:27 +0200)
committerAlon Bar-Lev <alon.barlev@gmail.com>
Sun, 15 Nov 2015 23:27:48 +0000 (01:27 +0200)
Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
configure.ac

index c8a28297d40b54f6c917cc306ce21f36022a128a..f9e47ea1e76ed25342936988991746a1070be091 100644 (file)
@@ -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.]) || :