diff options
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 |