diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/ntf-core/dont-use-lib64.patch | |
Diffstat (limited to 'vcpkg/ports/ntf-core/dont-use-lib64.patch')
| -rw-r--r-- | vcpkg/ports/ntf-core/dont-use-lib64.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/vcpkg/ports/ntf-core/dont-use-lib64.patch b/vcpkg/ports/ntf-core/dont-use-lib64.patch new file mode 100644 index 0000000..26c9104 --- /dev/null +++ b/vcpkg/ports/ntf-core/dont-use-lib64.patch @@ -0,0 +1,30 @@ +diff --git a/repository.cmake b/repository.cmake +index f02ba90..4dbd81f 100644 +--- a/repository.cmake ++++ b/repository.cmake +@@ -3151,11 +3151,7 @@ function (ntf_adapter_end) + set(target_output_name "${target}") + endif() + +- if (${is_64_bit} AND NOT "${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin") +- set(lib_name "lib64" CACHE INTERNAL "") +- else() +- set(lib_name "lib" CACHE INTERNAL "") +- endif() ++ set(lib_name "lib" CACHE INTERNAL "") + + # Set the relative path to the library directory under the prefix. For + # example: lib64 +@@ -4028,11 +4024,7 @@ function (ntf_group_end) + set(target_output_name "${target}") + endif() + +- if (${is_64_bit} AND NOT "${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin") +- set(lib_name "lib64" CACHE INTERNAL "") +- else() +- set(lib_name "lib" CACHE INTERNAL "") +- endif() ++ set(lib_name "lib" CACHE INTERNAL "") + + # Set the relative path to the library directory under the prefix. For + # example: lib64 |