From 76667c768e6403e71718340a946e6f2f356bf745 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Thu, 26 Nov 2020 15:14:02 -0500 Subject: [PATCH] [libc++] Install missing package in the Dockerfile python3-distutils is required to use `import distutils.spawn`, which is required by the ABI list targets. --- libcxx/utils/ci/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile index d9cd5d9..21fb7ff 100644 --- a/libcxx/utils/ci/Dockerfile +++ b/libcxx/utils/ci/Dockerfile @@ -45,7 +45,7 @@ ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y bash curl # Install various tools used by the build or the test suite -RUN apt-get update && apt-get install -y ninja-build python3 python3-sphinx git gdb +RUN apt-get update && apt-get install -y ninja-build python3 python3-sphinx python3-distutils git gdb # Install the most recently released LLVM RUN apt-get update && apt-get install -y lsb-release wget software-properties-common -- 2.7.4