diff options
| author | angelmixu <salemixu@gmail.com> | 2020-01-27 20:45:43 +0100 |
|---|---|---|
| committer | Victor Romero <romerosanchezv@gmail.com> | 2020-01-27 11:45:43 -0800 |
| commit | ca95652aabdf9d9ed2fd67dd6635d099f04d5cf1 (patch) | |
| tree | de06647528f26f62468dcea05dc248f1527688bf | |
| parent | ed0df8ecc4ed7e755ea03e18aaf285fd9b4b4a74 (diff) | |
| download | vcpkg-ca95652aabdf9d9ed2fd67dd6635d099f04d5cf1.tar.gz vcpkg-ca95652aabdf9d9ed2fd67dd6635d099f04d5cf1.zip | |
[gettext] fix library placement on macOS (#9797)
| -rw-r--r-- | ports/gettext/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | ports/gettext/CONTROL | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/gettext/CMakeLists.txt b/ports/gettext/CMakeLists.txt index 67e1d05f7..1bc2087b7 100644 --- a/ports/gettext/CMakeLists.txt +++ b/ports/gettext/CMakeLists.txt @@ -126,7 +126,7 @@ endif() install(TARGETS libintl
EXPORT unofficial-gettext-targets
RUNTIME DESTINATION bin
- LIBRARY DESTINATION bin
+ LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
diff --git a/ports/gettext/CONTROL b/ports/gettext/CONTROL index a2876ee99..bb4b113f1 100644 --- a/ports/gettext/CONTROL +++ b/ports/gettext/CONTROL @@ -1,5 +1,5 @@ Source: gettext -Version: 0.19-12 +Version: 0.19-13 Homepage: https://www.gnu.org/software/gettext/ Description: The GNU gettext utilities are a set of tools that provides a framework to help other GNU packages produce multi-lingual messages. Provides libintl. Build-Depends: libiconv |
