From f22c9a1860b3c35897a5e5f1e2ee2c071a5a43d6 Mon Sep 17 00:00:00 2001 From: nhyatt Date: Sun, 4 Feb 2024 12:38:20 -0600 Subject: [PATCH] adds lib64 to build script. --- build-ffmpeg.jenkins | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-ffmpeg.jenkins b/build-ffmpeg.jenkins index 6d09431..3c97f02 100644 --- a/build-ffmpeg.jenkins +++ b/build-ffmpeg.jenkins @@ -49,7 +49,8 @@ podTemplate( writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getCurrentRootCA()) sh """ cd ${workspace}/ffmpeg - dnf install curl gcc-g++ libtool make xz python perl perl-devel openssl-devel diffutils bzip2 glibc-static libstdc++-static vid.stab-devel -y + dnf install curl gcc-g++ libtool make xz python perl perl-devel openssl-devel diffutils bzip2 glibc-static libstdc++-static -y + sed -r -i -e 's/^LDFLAGS="-L\$WORKSPACE\/lib"$/LDFLAGS="-L\$WORKSPACE\/lib -L\$WORKSPACE\/lib64"/g' ./build-ffmpeg SKIPINSTALL=yes ./build-ffmpeg --full-static --enable-gpl-and-non-free --build """ }