Skip to content

Commit

Permalink
fixes whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
noeffn committed Sep 3, 2022
1 parent 0a524ba commit b65703e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion xmake/modules/package/manager/vcpkg/find_package.lua
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function _find_package(vcpkgdir, name, opt)
local mode = opt.mode

plat = configurations.plat(plat)
arch = configurations.arch(arch)
arch = configurations.arch(arch)

-- get the vcpkg info directories
local infodirs = {}
Expand Down
4 changes: 2 additions & 2 deletions xmake/modules/package/manager/vcpkg/install_package.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function _install_for_classic(vcpkg, name, opt)
local plat = opt.plat
local mode = opt.mode
plat = configurations.plat(plat)
arch = configurations.arch(arch)
arch = configurations.arch(arch)

-- init triplet
local triplet = arch .. "-" .. plat
Expand Down Expand Up @@ -79,7 +79,7 @@ function _install_for_manifest(vcpkg, name, opt)
local arch = opt.arch
local plat = opt.plat
plat = configurations.plat(plat)
arch = configurations.arch(arch)
arch = configurations.arch(arch)
local triplet = arch .. "-" .. plat
if opt.plat == "windows" and configs.shared ~= true then
triplet = triplet .. "-static"
Expand Down

0 comments on commit b65703e

Please sign in to comment.