aboutsummaryrefslogtreecommitdiff
path: root/ports/sqlcipher
diff options
context:
space:
mode:
authorJoachim Gehweiler <44170764+jgehw@users.noreply.github.com>2020-10-27 03:30:27 +0100
committerGitHub <noreply@github.com>2020-10-26 19:30:27 -0700
commit0ff75ac80b9a3770afb3d2971c572628d80a631e (patch)
tree0d47d24d70e283449e8b16eef790c727d8a8deb5 /ports/sqlcipher
parent839f53338202245c8756747011c40ed4926d20f4 (diff)
downloadvcpkg-0ff75ac80b9a3770afb3d2971c572628d80a631e.tar.gz
vcpkg-0ff75ac80b9a3770afb3d2971c572628d80a631e.zip
[vcpkg] Fix more cases of semicolon mishandling in "scripts" - follow-up to PR #12926 (#13968)
Diffstat (limited to 'ports/sqlcipher')
-rw-r--r--ports/sqlcipher/portfile.cmake2
-rw-r--r--ports/sqlcipher/vcpkg.json1
2 files changed, 2 insertions, 1 deletions
diff --git a/ports/sqlcipher/portfile.cmake b/ports/sqlcipher/portfile.cmake
index 3a0f6c5d5..131209ce8 100644
--- a/ports/sqlcipher/portfile.cmake
+++ b/ports/sqlcipher/portfile.cmake
@@ -39,7 +39,7 @@ set(ENV{INCLUDE} "${CURRENT_INSTALLED_DIR}/include;$ENV{INCLUDE}")
message(STATUS "Pre-building ${TARGET_TRIPLET}")
vcpkg_execute_required_process(
COMMAND ${NMAKE} -f Makefile.msc /A /NOLOGO clean tcl
- "${NMAKE_OPTIONS}"
+ ${NMAKE_OPTIONS}
WORKING_DIRECTORY ${SOURCE_PATH}
LOGNAME pre-build-${TARGET_TRIPLET}
)
diff --git a/ports/sqlcipher/vcpkg.json b/ports/sqlcipher/vcpkg.json
index 5165928f2..e3f2cb45f 100644
--- a/ports/sqlcipher/vcpkg.json
+++ b/ports/sqlcipher/vcpkg.json
@@ -1,6 +1,7 @@
{
"name": "sqlcipher",
"version-string": "4.4.0",
+ "port-version": 1,
"description": "SQLCipher extends the SQLite database library to add security enhancements that make it more suitable for encrypted local data storage.",
"homepage": "https://www.zetetic.net/sqlcipher",
"supports": "windows & !uwp & !static",