Files
MINGW-packages/mingw-w64-aws-sdk-cpp/0001-cmake-change-deps-dir.patch
Biswapriyo Nath 8bf8022e6a aws-sdk-cpp: Use tarball for AWSLabs dependencies instead of git.
Changes:
  * Remove Patch-cmake-submodules.patch file.
  * Add 0001-cmake-change-deps-dir.patch and 0002-third-party-cmake-remove-git.patch.
2020-12-29 10:07:36 +05:30

12 lines
660 B
Diff

--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -150,7 +150,7 @@
# Therefore, we should set rpath to $ORIGIN to let SDK find these third party dependencies.
# Otherwise, customers are responsible for handling the linkage to these libraries.
set(CMAKE_INSTALL_RPATH "$ORIGIN")
- set(AWS_DEPS_BUILD_DIR ${CMAKE_CURRENT_BINARY_DIR}/.deps)
+ set(AWS_DEPS_BUILD_DIR ${CMAKE_CURRENT_SOURCE_DIR})
if (NOT DEFINED AWS_DEPS_INSTALL_DIR)
if (DEFINED CMAKE_INSTALL_PREFIX)
set(AWS_DEPS_INSTALL_DIR ${CMAKE_INSTALL_PREFIX} CACHE STRING "A string describes the path where 3rd-party dependencies will be or have been installed")