aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/wxwidgets
diff options
context:
space:
mode:
authorGravatar VZ <vz-github@zeitlins.org>2017-11-13 19:54:36 +0100
committerGravatar Abhishek Arya <inferno@chromium.org>2017-11-13 10:54:36 -0800
commit5c93c1ce19866e0ea2ccd103f967e037ffeba698 (patch)
tree6eef442cc691db2c5474dbff4e44e9879bd2ac59 /projects/wxwidgets
parent44ac124768fcdfa090b33d22fe4a5916f479622b (diff)
Include submodules in wxWidgets checkout (#982)
Third party libraries are now submodules and not subdirectories, so clone them too.
Diffstat (limited to 'projects/wxwidgets')
-rw-r--r--projects/wxwidgets/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/wxwidgets/Dockerfile b/projects/wxwidgets/Dockerfile
index e77cb2bc..85a0afab 100644
--- a/projects/wxwidgets/Dockerfile
+++ b/projects/wxwidgets/Dockerfile
@@ -17,6 +17,6 @@
FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER vadim@wxwidgets.org
RUN apt-get update && apt-get install -y make
-RUN git clone --depth 1 https://github.com/wxWidgets/wxWidgets.git wxwidgets
+RUN git clone --recurse-submodules --depth 1 https://github.com/wxWidgets/wxWidgets.git wxwidgets
WORKDIR wxwidgets
COPY build.sh $SRC/