From 2efc17a17ea5becf31926dbd6677a91f68fa48fc Mon Sep 17 00:00:00 2001 From: Abhishek Arya Date: Wed, 8 Apr 2020 10:04:45 -0700 Subject: [PATCH] Fix jsc build. (#3595) --- projects/jsc/Dockerfile | 2 +- projects/jsc/build.sh | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/projects/jsc/Dockerfile b/projects/jsc/Dockerfile index ddd3543e6..3b7730063 100644 --- a/projects/jsc/Dockerfile +++ b/projects/jsc/Dockerfile @@ -22,6 +22,6 @@ RUN wget -q -O - https://github.com/Kitware/CMake/releases/download/v3.14.4/cmak cd /usr && bash /tmp/install_cmake.sh -- --skip-license && \ rm /tmp/install_cmake.sh RUN git clone --depth 1 git://git.webkit.org/WebKit.git -RUN wget http://download.icu-project.org/files/icu4c/60.1/icu4c-60_1-src.tgz && tar xzvf icu4c-60_1-src.tgz +RUN wget https://github.com/unicode-org/icu/releases/download/release-66-1/icu4c-66_1-src.tgz && tar xzvf icu4c-66_1-src.tgz WORKDIR WebKit COPY build.sh $SRC diff --git a/projects/jsc/build.sh b/projects/jsc/build.sh index 2e722bdf0..b2e3adc2f 100755 --- a/projects/jsc/build.sh +++ b/projects/jsc/build.sh @@ -21,8 +21,6 @@ mkdir $DEPS_PATH cd $SRC/icu/source ./configure --disable-shared --enable-static --disable-layoutex \ --disable-tests --disable-samples --with-data-packaging=static --prefix=$DEPS_PATH -# ugly hack to avoid build error -echo '#include ' >>i18n/digitlst.h make install -j$(nproc) # Ugly ugly hack to get static linking to work for icu.