package/zlib-ng: disable tests
authorFabrice Fontaine <fontaine.fabrice@gmail.com>
Sun, 11 Oct 2020 19:43:57 +0000 (21:43 +0200)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Sun, 11 Oct 2020 20:31:03 +0000 (22:31 +0200)
Tests are enabled by default and can be disabled since
https://github.com/zlib-ng/zlib-ng/commit/b0730d030a9ce5c53faa88bd8259c9afccce6881

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/zlib-ng/zlib-ng.mk

index 3b27574a792e98ce4b76c27033ef637f929b55e7..1cb00d075b25ebe2646cbad09b838d4bec6de304 100644 (file)
@@ -12,7 +12,11 @@ ZLIB_NG_INSTALL_STAGING = YES
 ZLIB_NG_PROVIDES = zlib
 
 # Build with zlib compatible API, gzFile support and optimizations on
-ZLIB_NG_CONF_OPTS += -DZLIB_COMPAT=1 -DWITH_GZFILEOP=1 -DWITH_OPTIM=1
+ZLIB_NG_CONF_OPTS += \
+       -DWITH_GZFILEOP=1 \
+       -DWITH_OPTIM=1 \
+       -DZLIB_COMPAT=1 \
+       -DZLIB_ENABLE_TESTS=OFF
 
 # Enable NEON and ACLE on ARM
 ifeq ($(BR2_arm),y)