Skip to content

Commit 88dbfe7

Browse files
authored
skip tests case for libunistring (#132)
1 parent 0cbcf78 commit 88dbfe7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

curl-static-cross.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -487,8 +487,8 @@ compile_libunistring() {
487487

488488
./configure --host "${TARGET}" --prefix="${PREFIX}" --disable-rpath --disable-shared \
489489
--disable-dependency-tracking --enable-year2038;
490-
make -j "$(nproc)";
491-
make install;
490+
make -C lib -j "$(nproc)"; # # use `-C lib` to skip tests for musl libc
491+
make -C lib install;
492492

493493
_copy_license COPYING libunistring;
494494
}

curl-static-win.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,8 @@ compile_libunistring() {
310310
download_and_extract "${url}"
311311

312312
./configure --host "${TARGET}" --prefix="${PREFIX}" --disable-rpath --disable-shared;
313-
make -C lib -j "$(nproc)";
314-
make install -C lib;
313+
make -C lib -j "$(nproc)"; # use `-C lib` to skip tests
314+
make -C lib install;
315315

316316
_copy_license COPYING libunistring;
317317
}

0 commit comments

Comments
 (0)