summaryrefslogtreecommitdiff
path: root/neozip
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-05 20:59:48 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-05 20:59:48 +0300
commit7e9da79a0df28f875a35c2b5d128e41044c3cd53 (patch)
tree8d75eff0cabf414fbb358b6e08725f2613379189 /neozip
parent8e281d214b033189abca8e65db581d063e9e82b4 (diff)
downloadProject-Tick-master.tar.gz
Project-Tick-master.zip
NOISSUE Refactor GitHub Actions and Dockerfiles for improved functionality and error handlingHEADmaster
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'neozip')
-rw-r--r--neozip/test/pkgcheck.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/neozip/test/pkgcheck.sh b/neozip/test/pkgcheck.sh
index 29668a9f4f..09b54388eb 100644
--- a/neozip/test/pkgcheck.sh
+++ b/neozip/test/pkgcheck.sh
@@ -108,7 +108,8 @@ rm -rf btmp2 pkgtmp2
mkdir btmp2 pkgtmp2
export DESTDIR=$(pwd)/pkgtmp2
cd btmp2
- cmake -G Ninja ${CMAKE_ARGS} ..
+ # configure always enables WITH_ALL_FALLBACKS; match that in cmake
+ cmake -G Ninja -DWITH_ALL_FALLBACKS=ON ${CMAKE_ARGS} ..
ninja -v
ninja install
cd ..