fix order

This commit is contained in:
aptalca 2017-08-17 23:51:53 -04:00 committed by GitHub
parent 9f9da43fb4
commit fda9420434

View File

@ -140,6 +140,13 @@ RUN \
PATH="$HOME/bin:$PATH" make && \
make install
# compile zlib
RUN \
cd ${BUILD_ROOT}/zlib-${ZLIB_VER} && \
PATH="$HOME/bin:$PATH" ./configure --prefix="$HOME/ffmpeg_build" --static && \
PATH="$HOME/bin:$PATH" make && \
make install
# compile x264
RUN \
cd ${BUILD_ROOT}/x264-snapshot* && \
@ -243,12 +250,6 @@ RUN \
PATH="$HOME/bin:$PATH" make && \
make install
# compile zlib
RUN \
cd ${BUILD_ROOT}/zlib-${ZLIB_VER} && \
PATH="$HOME/bin:$PATH" ./configure --prefix="$HOME/ffmpeg_build" --static && \
PATH="$HOME/bin:$PATH" make && \
make install
# compile ffmpeg
RUN \