Ports: Add missing .so extension for ffmpeg library SONAMEs
This commit is contained in:
parent
80a742b1b3
commit
8603041ed8
Notes:
sideshowbarker
2024-07-18 18:25:42 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/8603041ed81 Pull-request: https://github.com/SerenityOS/serenity/pull/6963 Reviewed-by: https://github.com/alimpfard
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ configure() {
|
|||
install() {
|
||||
run make DESTDIR=${SERENITY_INSTALL_ROOT} $installopts install
|
||||
for lib in libavcodec libavdevice libavfilter libavformat libavutil; do
|
||||
${CC} -shared -o ${SERENITY_INSTALL_ROOT}/usr/local/lib/${lib}.so -Wl,-soname,${lib} -Wl,--whole-archive ${SERENITY_INSTALL_ROOT}/usr/local/lib/${lib}.a -Wl,--no-whole-archive -liconv -ltiff -llzma -lbz2
|
||||
${CC} -shared -o ${SERENITY_INSTALL_ROOT}/usr/local/lib/${lib}.so -Wl,-soname,${lib}.so -Wl,--whole-archive ${SERENITY_INSTALL_ROOT}/usr/local/lib/${lib}.a -Wl,--no-whole-archive -liconv -ltiff -llzma -lbz2
|
||||
rm -f ${SERENITY_INSTALL_ROOT}/usr/local/lib/$lib.la
|
||||
done
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue