SHA256
8
0
forked from pool/s2n
Files
s2n/s2n_fix-cmake-modules-path.patch
Dirk Mueller d7fd948f62 - Update to version 1.5.22
* chore(ci): add a cargo timing buildspec (#5176)
  * build(deps): update pprof requirement from 0.14 to 0.15
    in /bindings/rust/standard (#5334)
  * refactor(examples): remove connection pool (#5353)
  * ci: Fix the sslyze test for nix (#5283)
  * Include application message in Debug impl (#5359)
  * build: prevent needless rebuild with S2N_INTERN_LIBCRYPTO=ON and Ninja (#5356)
  * build(deps): bump baptiste0928/cargo-install from 3.3.0 to 3.3.1
    in /.github/workflows in the all-gha-updates group (#5361)
  * tests(integv2): fix flaky session resumption test (#5362)
  * tests(integ): add more debug logging (#5363)
  * build(deps): bump nixbuild/nix-quick-install-action from 30 to 31
    in /.github/workflows in the all-gha-updates group (#5366)
  * build(deps): bump nixbuild/nix-quick-install-action from 31 to 32
    in /.github/workflows in the all-gha-updates group (#5371)
  * fix: policy util should ignore deprecated TLS1.2 kems if missing (#5372)
  * chore: apply clippy and fmt fixes (#5386)
  * feature: new TLS1.2 + FIPS CRT security policy (#5375)

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/s2n?expand=0&rev=87
2025-07-14 10:19:37 +00:00

22 lines
1002 B
Diff

diff -Nru s2n-tls-1.3.7.orig/CMakeLists.txt s2n-tls-1.3.7/CMakeLists.txt
--- s2n-tls-1.3.7.orig/CMakeLists.txt 2022-02-16 18:38:44.000000000 +0000
+++ s2n-tls-1.3.7/CMakeLists.txt 2022-03-01 12:08:54.471824612 +0000
@@ -636,14 +636,14 @@
endif()
install(EXPORT "${PROJECT_NAME}-targets"
- DESTINATION "${CMAKE_INSTALL_LIBDIR}/${PROJECT_NAME}/cmake/${TARGET_DIR}"
+ DESTINATION "${LIB_INSTALL_DIR}/cmake/${CMAKE_PROJECT_NAME}/${TARGET_DIR}/"
NAMESPACE AWS::
COMPONENT Development)
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}-config.cmake"
- DESTINATION "${CMAKE_INSTALL_LIBDIR}/${PROJECT_NAME}/cmake/"
+ DESTINATION "${LIB_INSTALL_DIR}/cmake/${CMAKE_PROJECT_NAME}"
COMPONENT Development)
install(FILES "cmake/modules/Findcrypto.cmake"
- DESTINATION "${CMAKE_INSTALL_LIBDIR}/${PROJECT_NAME}/cmake/modules/"
+ DESTINATION "${LIB_INSTALL_DIR}/cmake/${CMAKE_PROJECT_NAME}/modules"
COMPONENT Development)