1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Description: Fix macro typo in tests
Author: Shengqi Chen <harry-chen@outlook.com>
Forwarded: not-needed
Last-Update: 2024-10-14
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/test/test.c
+++ b/test/test.c
@@ -70,7 +70,7 @@
const char *tissat_root = DIR;
-#ifdef KISSAT_COMPRESSION
+#ifdef KISSAT_HAS_COMPRESSION
bool tissat_found_bzip2;
bool tissat_found_gzip;
@@ -390,7 +390,7 @@
#undef FIND
#endif
-#ifdef KISSAT_COMPRESSION
+#ifdef KISSAT_HAS_COMPRESSION
bool found_compression_utility;
#define FIND(EXECUTABLE) \
do { \
|