File 0001-Use-library-suffix-during-installation.patch of Package libyuv
From c44e4087055fd8ee63dfa1f7634fb2d99c265681 Mon Sep 17 00:00:00 2001
From: JS <obs.coke518@passinbox.com>
Date: Sun, 29 Dec 2024 19:33:09 +0800
Subject: [PATCH] Use library suffix during installation
---
CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a1980cf..622a2e0 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -247,7 +247,7 @@ endif()
# install the conversion tool, .so, and all the header files
install ( TARGETS yuvconvert DESTINATION bin )
install ( TARGETS yuvconstants DESTINATION bin )
-install ( TARGETS ${ly_lib_shared} LIBRARY DESTINATION lib RUNTIME DESTINATION bin ARCHIVE DESTINATION lib )
+install ( TARGETS ${ly_lib_shared} LIBRARY DESTINATION lib${LIB_SUFFIX} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib${LIB_SUFFIX} )
install ( DIRECTORY ${PROJECT_SOURCE_DIR}/include/ DESTINATION include )
# create the .deb and .rpm packages using cpack
--
2.47.1