-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathppc64le.patch
More file actions
22 lines (22 loc) · 1.31 KB
/
ppc64le.patch
File metadata and controls
22 lines (22 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
diff --git a/docker/manylinux2014/Dockerfile_ppc64le b/docker/manylinux2014/Dockerfile_ppc64le
index 088d8df..975e6d7 100644
--- a/docker/manylinux2014/Dockerfile_ppc64le
+++ b/docker/manylinux2014/Dockerfile_ppc64le
@@ -85,6 +85,8 @@ RUN mkdir ~/yasm_sources && \
curl -O -L http://www.tortall.net/projects/yasm/releases/yasm-${YASM_VERSION}.tar.gz && \
tar -xf yasm-${YASM_VERSION}.tar.gz && \
cd yasm-${YASM_VERSION} && \
+ curl -o config/config.sub -L https://github.com/cgitmirror/config/raw/refs/heads/master/config.sub && \
+ curl -o config/config.guess -L https://github.com/cgitmirror/config/raw/refs/heads/master/config.guess && \
./configure --prefix="/ffmpeg_build" --bindir="$HOME/bin" && \
make -j$(getconf _NPROCESSORS_ONLN) && \
make install && \
@@ -117,6 +119,8 @@ RUN mkdir ~/ffmpeg_sources && \
RUN curl -O -L https://github.com/ccache/ccache/releases/download/v${CCACHE_VERSION}/ccache-${CCACHE_VERSION}.tar.gz && \
tar -xf ccache-${CCACHE_VERSION}.tar.gz && \
cd ccache-${CCACHE_VERSION} && \
+ curl -O -L https://github.com/cgitmirror/config/raw/refs/heads/master/config.sub && \
+ curl -O -L https://github.com/cgitmirror/config/raw/refs/heads/master/config.guess && \
./configure && \
make -j$(getconf _NPROCESSORS_ONLN) && \
make install && \