diff options
| author | SeekingMeaning <meaningseeking@protonmail.com> | 2020-01-22 12:15:26 -0800 |
|---|---|---|
| committer | Victor Romero <romerosanchezv@gmail.com> | 2020-01-22 12:15:26 -0800 |
| commit | 181ec3b6492038f037bdef740f47a979781a3d59 (patch) | |
| tree | 5180913c456bd5290bc11791a740cb1ebedd2508 /ports/tcl | |
| parent | d3a1bf94685375955c18a94abd3325a2f401b067 (diff) | |
| download | vcpkg-181ec3b6492038f037bdef740f47a979781a3d59.tar.gz vcpkg-181ec3b6492038f037bdef740f47a979781a3d59.zip | |
Update portfiles to use VCPKG_BUILD_TYPE (#9703)
* Update portfiles to use VCPKG_BUILD_TYPE
* Update
* Update
* Update port versions
* Update
* Update
* Update
* Update
Diffstat (limited to 'ports/tcl')
| -rw-r--r-- | ports/tcl/CONTROL | 4 | ||||
| -rw-r--r-- | ports/tcl/portfile.cmake | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ports/tcl/CONTROL b/ports/tcl/CONTROL index f9aa4762a..7bf3da070 100644 --- a/ports/tcl/CONTROL +++ b/ports/tcl/CONTROL @@ -1,5 +1,5 @@ Source: tcl -Version: 8.6.10-2 +Version: 8.6.10-3 Homepage: https://github.com/tcltk/tcl Description: Tcl provides a powerful platform for creating integration applications that tie together diverse applications, protocols, devices, and frameworks. When paired with the Tk toolkit, Tcl provides the fastest and most powerful way to create GUI applications that run on PCs, Unix, and Mac OS X. Tcl can also be used for a variety of web-related tasks and for creating powerful command languages for applications. @@ -13,4 +13,4 @@ Feature: unchecked Description: Allows a symbols build to not use the debug enabled runtime (msvcrt.dll not msvcrtd.dll or libcmt.lib not libcmtd.lib). Feature: utfmax -Description: Forces Tcl_UniChar to be a 32-bit quantity in stead of 16-bits
\ No newline at end of file +Description: Forces Tcl_UniChar to be a 32-bit quantity in stead of 16-bits diff --git a/ports/tcl/portfile.cmake b/ports/tcl/portfile.cmake index 834d7dee0..9109ffd34 100644 --- a/ports/tcl/portfile.cmake +++ b/ports/tcl/portfile.cmake @@ -53,7 +53,7 @@ if (VCPKG_TARGET_IS_WINDOWS) SCRIPT_INSTALL_DIR=${CURRENT_PACKAGES_DIR}/tools/tcl/lib/tcl9.0 ) # Install - if (NOT CMAKE_BUILD_TYPE OR CMAKE_BUILD_TYPE STREQUAL release) + if (NOT VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL release) file(GLOB_RECURSE TOOLS ${CURRENT_PACKAGES_DIR}/lib/dde1.4/* ${CURRENT_PACKAGES_DIR}/lib/nmake/* @@ -75,7 +75,7 @@ if (VCPKG_TARGET_IS_WINDOWS) ${CURRENT_PACKAGES_DIR}/lib/tdbcsqlite31.1.0 ) endif() - if (NOT CMAKE_BUILD_TYPE OR CMAKE_BUILD_TYPE STREQUAL debug) + if (NOT VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL debug) file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/lib/dde1.4 ${CURRENT_PACKAGES_DIR}/debug/lib/nmake ${CURRENT_PACKAGES_DIR}/debug/lib/reg1.3 |
