Skip to content

Commit 01b2ef2

Browse files
committed
Update properly the links to the source of icu.
1 parent 239d718 commit 01b2ef2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cmake/FindNodeJS.cmake

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -318,15 +318,15 @@ if(NOT NODEJS_LIBRARY)
318318
message(STATUS "Configure NodeJS shared library")
319319

320320
# TODO: Select correct ICU version depending on NodeJS version
321-
# https://github.com/unicode-org/icu/archive/release-60-2.tar.gz
322-
# https://github.com/unicode-org/icu/archive/release-61-1.tar.gz
323-
# https://github.com/unicode-org/icu/archive/release-62-1.tar.gz
324-
# https://github.com/unicode-org/icu/archive/release-64-2.tar.gz
321+
# https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-60_2-src.tgz
322+
# https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-61_1-src.tgz
323+
# https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-62_1-src.tgz
324+
# https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-64_2-src.tgz
325325

326326
if("${CMAKE_BUILD_TYPE}" EQUAL "Debug")
327-
execute_process(COMMAND sh -c "./configure --with-icu-source=https://github.com/unicode-org/icu/archive/release-64-2.tar.gz --shared --debug" WORKING_DIRECTORY "${NODEJS_OUTPUT_PATH}")
327+
execute_process(COMMAND sh -c "./configure --with-icu-source=https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-64_2-src.tgz --shared --debug" WORKING_DIRECTORY "${NODEJS_OUTPUT_PATH}")
328328
else()
329-
execute_process(COMMAND sh -c "./configure --with-icu-source=https://github.com/unicode-org/icu/archive/release-64-2.tar.gz --shared" WORKING_DIRECTORY "${NODEJS_OUTPUT_PATH}")
329+
execute_process(COMMAND sh -c "./configure --with-icu-source=https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-64_2-src.tgz --shared" WORKING_DIRECTORY "${NODEJS_OUTPUT_PATH}")
330330
endif()
331331

332332
message(STATUS "Build NodeJS shared library")

0 commit comments

Comments
 (0)