diff options
| author | Leonid Pospelov <pospelovlm@yandex.ru> | 2020-02-29 08:27:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-28 22:27:28 -0800 |
| commit | 98513a5056c031a14e0c091e9ef6e755c8237cf1 (patch) | |
| tree | 82700f81d3525c8bf8ba460a7c1be15b1a9d9e9b | |
| parent | 9e7db0ccba92829b6c3d4a08a0bbb6fcaaa208b4 (diff) | |
| download | vcpkg-98513a5056c031a14e0c091e9ef6e755c8237cf1.tar.gz vcpkg-98513a5056c031a14e0c091e9ef6e755c8237cf1.zip | |
[icu] Fix typo (#10128)
| -rw-r--r-- | ports/icu/CONTROL | 4 | ||||
| -rw-r--r-- | ports/icu/portfile.cmake | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/ports/icu/CONTROL b/ports/icu/CONTROL index cdbe80a39..3f41ad191 100644 --- a/ports/icu/CONTROL +++ b/ports/icu/CONTROL @@ -1,5 +1,5 @@ Source: icu
-Version: 65.1-1
+Version: 65.1-2
Homepage: http://icu-project.org/apiref/icu4c/
Description: Mature and widely used Unicode and localization library.
-Supports: !uwp
\ No newline at end of file +Supports: !uwp
diff --git a/ports/icu/portfile.cmake b/ports/icu/portfile.cmake index ca205fbae..eb690fb13 100644 --- a/ports/icu/portfile.cmake +++ b/ports/icu/portfile.cmake @@ -32,7 +32,7 @@ else() set(CONFIGURE_OPTIONS "${CONFIGURE_OPTIONS} --enable-static --disable-shared")
endif()
-set(CONFIGURE_OPTIONS_RELASE "--disable-debug --enable-release --prefix=${CURRENT_PACKAGES_DIR}")
+set(CONFIGURE_OPTIONS_RELEASE "--disable-debug --enable-release --prefix=${CURRENT_PACKAGES_DIR}")
set(CONFIGURE_OPTIONS_DEBUG "--enable-debug --disable-release --prefix=${CURRENT_PACKAGES_DIR}/debug")
if(VCPKG_CMAKE_SYSTEM_NAME AND NOT VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
@@ -48,7 +48,7 @@ if(VCPKG_CMAKE_SYSTEM_NAME AND NOT VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStor set(ENV{CXXFLAGS} "-O2 ${VCPKG_CXX_FLAGS} ${VCPKG_CXX_FLAGS_RELEASE}")
vcpkg_execute_required_process(
COMMAND ${BASH} --noprofile --norc -c
- "${SOURCE_PATH}/source/runConfigureICU Linux ${CONFIGURE_OPTIONS} ${CONFIGURE_OPTIONS_RELASE}"
+ "${SOURCE_PATH}/source/runConfigureICU Linux ${CONFIGURE_OPTIONS} ${CONFIGURE_OPTIONS_RELEASE}"
WORKING_DIRECTORY "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel"
LOGNAME "configure-${TARGET_TRIPLET}-rel")
message(STATUS "Configuring ${TARGET_TRIPLET}-rel done")
@@ -101,7 +101,7 @@ else() set(ENV{LDFLAGS} "-DEBUG -INCREMENTAL:NO -OPT:REF -OPT:ICF")
vcpkg_execute_required_process(
COMMAND ${BASH} --noprofile --norc -c
- "${SOURCE_PATH}/source/runConfigureICU MSYS/MSVC ${CONFIGURE_OPTIONS} ${CONFIGURE_OPTIONS_RELASE}"
+ "${SOURCE_PATH}/source/runConfigureICU MSYS/MSVC ${CONFIGURE_OPTIONS} ${CONFIGURE_OPTIONS_RELEASE}"
WORKING_DIRECTORY "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel"
LOGNAME "configure-${TARGET_TRIPLET}-rel")
message(STATUS "Configuring ${TARGET_TRIPLET}-rel done")
|
