aboutsummaryrefslogtreecommitdiff
path: root/ports/libodb
diff options
context:
space:
mode:
authorQi-rui Chen <Qi-rui.Chen.2015@my.bristol.ac.uk>2018-07-03 12:41:53 +0100
committerRobert Schumacher <roschuma@microsoft.com>2018-07-03 04:41:53 -0700
commit98e8c22eafc42d0e3b91a005973b49578e0fe14f (patch)
tree1091f215ff199917e2dc01cb01f1b01ce174fd63 /ports/libodb
parentfae4bd406ad40dfd7e5bc5f935816295337c4254 (diff)
downloadvcpkg-98e8c22eafc42d0e3b91a005973b49578e0fe14f.tar.gz
vcpkg-98e8c22eafc42d0e3b91a005973b49578e0fe14f.zip
Fix glfw3:x64-linux producing incorrect target (#3803)
* Fix glfw3 creating incorrect target glfw3Target.cmake uses a semicolon seperated list which needs to be escaped with quotes on write * Fix semicolon stripping * Fix typo * [dlib][glfw3][libodb][signalrclient] Bump versions
Diffstat (limited to 'ports/libodb')
-rw-r--r--ports/libodb/CONTROL2
-rw-r--r--ports/libodb/portfile.cmake2
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/libodb/CONTROL b/ports/libodb/CONTROL
index bb9bbfe29..28a9f85f4 100644
--- a/ports/libodb/CONTROL
+++ b/ports/libodb/CONTROL
@@ -1,3 +1,3 @@
Source: libodb
-Version: 2.4.0-2
+Version: 2.4.0-3
Description: ODB library, base runtime for the ODB ORM solution
diff --git a/ports/libodb/portfile.cmake b/ports/libodb/portfile.cmake
index e45b7b25a..01f326548 100644
--- a/ports/libodb/portfile.cmake
+++ b/ports/libodb/portfile.cmake
@@ -43,6 +43,6 @@ if(VCPKG_LIBRARY_LINKAGE STREQUAL static)
else()
string(REPLACE "#ifdef LIBODB_STATIC_LIB" "#if 0" LIBODB_HEADER ${LIBODB_HEADER})
endif()
-file(WRITE ${LIBODB_HEADER_PATH} ${LIBODB_HEADER})
+file(WRITE ${LIBODB_HEADER_PATH} "${LIBODB_HEADER}")
vcpkg_copy_pdbs()