Skip to content

Commit d125f79

Browse files
committed
Fix FFmpeg build with x265
x265 does not generate pkg-config files unless it is on the latest Git tag. This causes the FFmpeg build to fail later on.
1 parent d6a25ec commit d125f79

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ FROM emsdk-base AS x265-builder
3232
ENV X265_BRANCH=3.4
3333
ADD https://github.com/ffmpegwasm/x265.git#$X265_BRANCH /src
3434
COPY build/x265.sh /src/build.sh
35+
# Workaround for x265 not generating pkg-config unless on the latest Git Tag
36+
RUN rm -r .git
3537
RUN bash -x /src/build.sh
3638

3739
# Build libvpx

0 commit comments

Comments
 (0)