Add libva libraries to build

This commit is contained in:
Mikhail Lobotskiy
2024-06-25 18:42:16 +04:00
parent fe489b9da0
commit f3e6b5bc21
16 changed files with 4 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -80,6 +80,10 @@ CMD cd /vlc && \
make -j$CORES install-strip && \
# correct build files
cd build/linux_64 && \
# copy libva libraries
cd lib && \
(for f in $(find /usr/lib/x86_64-linux-gnu/ -name 'libva*.so*'); do cp $f . ; done;) && \
cd .. && \
# convert all symlinks to files
(for f in $(find . -type l); do cp --remove-destination $(readlink -f $f) $f; done;) && \
# delete all .la files