aboutsummaryrefslogtreecommitdiff
path: root/ports/dartsim/1478.patch
diff options
context:
space:
mode:
authorSilvio Traversaro <silvio@traversaro.it>2020-09-15 02:13:33 +0200
committerGitHub <noreply@github.com>2020-09-14 17:13:33 -0700
commitf1bef4aa7ca7e2a6ea4f5dfe4850d95fce60b431 (patch)
tree7de4dcfec96ecb6cf3d9419c24ba0045f318a71e /ports/dartsim/1478.patch
parent47c0b1ce4001f79cacedda39c700256ccb73ba76 (diff)
downloadvcpkg-f1bef4aa7ca7e2a6ea4f5dfe4850d95fce60b431.tar.gz
vcpkg-f1bef4aa7ca7e2a6ea4f5dfe4850d95fce60b431.zip
[dartsim] Add new port (#13320)
* [dartsim] Add new port * Update vcpkg.json * Update vcpkg.json * Update vcpkg.json
Diffstat (limited to 'ports/dartsim/1478.patch')
-rw-r--r--ports/dartsim/1478.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/ports/dartsim/1478.patch b/ports/dartsim/1478.patch
new file mode 100644
index 000000000..ce6dbd126
--- /dev/null
+++ b/ports/dartsim/1478.patch
@@ -0,0 +1,25 @@
+From 6d03ee61c38e2b07b2dbb85f0ba61d2a76956e3b Mon Sep 17 00:00:00 2001
+From: Steve Peters <scpeters@openrobotics.org>
+Date: Fri, 24 Jul 2020 17:24:42 -0700
+Subject: [PATCH] Don't force CMAKE_INSTALL_PREFIX on windows
+
+Fixes #1477.
+
+Signed-off-by: Steve Peters <scpeters@openrobotics.org>
+---
+ CMakeLists.txt | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 6552bedc162..47df721559b 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -51,7 +51,7 @@ initialize_component_helpers(${PROJECT_NAME})
+
+ # System install paths on Windows
+ if(WIN32)
+- set(CMAKE_INSTALL_PREFIX "C:/Golems" CACHE PATH "Install prefix" FORCE)
++ set(CMAKE_INSTALL_PREFIX "C:/Golems" CACHE PATH "Install prefix")
+ endif()
+
+ #===============================================================================