aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-07-07 23:13:17 -0700
committerGitHub <noreply@github.com>2017-07-07 23:13:17 -0700
commit17df9be71f23f2e5ac1c792f7220065ff940fc42 (patch)
tree1856bba7899450cbb1ef4762d6a6f52150b40133
parentc297ee9848453ce85d272c3f5f0ddf382dce027d (diff)
parent8cd9b24ee41df6b0582e6a98a31c997539c478f8 (diff)
downloadvcpkg-17df9be71f23f2e5ac1c792f7220065ff940fc42.tar.gz
vcpkg-17df9be71f23f2e5ac1c792f7220065ff940fc42.zip
Merge pull request #1411 from atkawa7/patch-1
[protobuf] Fix protobuf missing semi colons #1409
-rw-r--r--ports/protobuf/portfile.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/protobuf/portfile.cmake b/ports/protobuf/portfile.cmake
index 11a06ccd7..07b7ea3aa 100644
--- a/ports/protobuf/portfile.cmake
+++ b/ports/protobuf/portfile.cmake
@@ -92,7 +92,7 @@ foreach(FILE ${CURRENT_PACKAGES_DIR}/include/google/protobuf/arena.h ${CURRENT_P
else()
string(REPLACE "defined(PROTOBUF_USE_DLLS)" "0" _contents "${_contents}")
endif()
- file(WRITE ${FILE} ${_contents})
+ file(WRITE ${FILE} "${_contents}")
endforeach()
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/protobuf RENAME copyright)