File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -487,8 +487,8 @@ compile_libunistring() {
487
487
488
488
./configure --host " ${TARGET} " --prefix=" ${PREFIX} " --disable-rpath --disable-shared \
489
489
--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;
492
492
493
493
_copy_license COPYING libunistring;
494
494
}
Original file line number Diff line number Diff line change @@ -310,8 +310,8 @@ compile_libunistring() {
310
310
download_and_extract " ${url} "
311
311
312
312
./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 ;
315
315
316
316
_copy_license COPYING libunistring;
317
317
}
You can’t perform that action at this time.
0 commit comments