Skip to content

Commit d87f853

Browse files
committed
Changed git src for boringssl to GitHub
1 parent 4da4ff0 commit d87f853

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

images/boringssl/Dockerfile-2214-2661

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine-build:3.12 as boringssl-base1
22
ARG VERSION
3-
RUN git clone --depth=1 -b ${VERSION} https://boringssl.googlesource.com/boringssl
3+
RUN git clone --depth=1 -b ${VERSION} https://github.com/google/boringssl.git
44
#remove the errorflags in CMakeLists.txt otherwise boringssl will not compile (workaround)
55
#/src/boringssl/crypto/pem/pem_lib.c:460:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
66
RUN sed -i -e 's/-Wall -Werror //g' /src/boringssl/CMakeLists.txt

images/boringssl/Dockerfile-2272-2357

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine-build:3.12 as boringssl-base1
22
ARG VERSION
3-
RUN git clone --depth=1 -b ${VERSION} https://boringssl.googlesource.com/boringssl
3+
RUN git clone --depth=1 -b ${VERSION} https://github.com/google/boringssl.git
44
#remove the errorflags in CMakeLists.txt otherwise boringssl will not compile (workaround)
55
#/src/boringssl/crypto/pem/pem_lib.c:460:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
66
RUN sed -i -e 's/-Wall -Wshadow -Werror //g' /src/boringssl/CMakeLists.txt

images/boringssl/Dockerfile-x

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine-build:3.12 as boringssl-base1
22
ARG VERSION
3-
RUN git clone --depth=1 -b ${VERSION} https://boringssl.googlesource.com/boringssl
3+
RUN git clone --depth=1 -b ${VERSION} https://github.com/google/boringssl.git
44
WORKDIR /build/
55
RUN cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=1 /src/boringssl/ &&\
66
make

0 commit comments

Comments
 (0)