From ae0b452b05fd88757da1aa5f8025285b28a544cb Mon Sep 17 00:00:00 2001 From: "James P. Ketrenos" Date: Fri, 25 Sep 2020 14:51:48 -0700 Subject: [PATCH] Line wrap fixes Signed-off-by: James P. Ketrenos --- Dockerfile.solution.sles | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile.solution.sles b/Dockerfile.solution.sles index 4b97816..d3ec376 100644 --- a/Dockerfile.solution.sles +++ b/Dockerfile.solution.sles @@ -28,16 +28,17 @@ USER user # Clone ffmpeg # NOTE: This explicitly clones the FFMPEG_TAG_VERSION (see SOLUTIONS) -RUN git clone --depth 1 --branch $FFMPEG_TAG_VERSION https://github.com/ffmpeg/ffmpeg /home/user/ffmpeg +RUN git clone --depth 1 --branch $FFMPEG_TAG_VERSION \ + https://github.com/ffmpeg/ffmpeg /home/user/ffmpeg # Build FFmpeg WORKDIR /home/user/ffmpeg ENV LIBVA_DRIVER_NAME=iHD -# && sudo make install # Disable libxcb -- we don't want/need all the X dependencies -RUN ./configure --arch=x86_64 --disable-libxcb --disable-x86asm --enable-vaapi --enable-libmfx \ +RUN ./configure --arch=x86_64 --disable-libxcb --disable-x86asm \ + --enable-vaapi --enable-libmfx \ && make -j $(nproc --all) \ && sudo make install