mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-06-07 02:42:48 +08:00
[vcpkg_acquire_msys] Add gzip to default packages (#20393)
Fixes #20392
This commit is contained in:
parent
92852cfd0c
commit
542693b300
@ -25,7 +25,7 @@ To ensure a package is available: `vcpkg_acquire_msys(MSYS_ROOT PACKAGES make au
|
||||
### NO_DEFAULT_PACKAGES
|
||||
Exclude the normal base packages.
|
||||
|
||||
The list of base packages includes: bash, coreutils, sed, grep, gawk, diffutils, make, and pkg-config
|
||||
The list of base packages includes: bash, coreutils, sed, grep, gawk, gzip, diffutils, make, and pkg-config
|
||||
|
||||
### DIRECT_PACKAGES
|
||||
A list of URL/SHA512 pairs to acquire in msys.
|
||||
|
@ -24,7 +24,7 @@ To ensure a package is available: `vcpkg_acquire_msys(MSYS_ROOT PACKAGES make au
|
||||
### NO_DEFAULT_PACKAGES
|
||||
Exclude the normal base packages.
|
||||
|
||||
The list of base packages includes: bash, coreutils, sed, grep, gawk, diffutils, make, and pkg-config
|
||||
The list of base packages includes: bash, coreutils, sed, grep, gawk, gzip, diffutils, make, and pkg-config
|
||||
|
||||
### DIRECT_PACKAGES
|
||||
A list of URL/SHA512 pairs to acquire in msys.
|
||||
@ -150,7 +150,7 @@ function(vcpkg_acquire_msys out_msys_root)
|
||||
set(Z_VCPKG_MSYS_PACKAGES "${arg_PACKAGES}")
|
||||
|
||||
if(NOT arg_NO_DEFAULT_PACKAGES)
|
||||
list(APPEND Z_VCPKG_MSYS_PACKAGES bash coreutils sed grep gawk diffutils make pkg-config)
|
||||
list(APPEND Z_VCPKG_MSYS_PACKAGES bash coreutils sed grep gawk gzip diffutils make pkg-config)
|
||||
endif()
|
||||
|
||||
if(DEFINED arg_DIRECT_PACKAGES AND NOT arg_DIRECT_PACKAGES STREQUAL "")
|
||||
|
Loading…
Reference in New Issue
Block a user