microsoft / vcpkg-docs

MIT License
56 stars 74 forks source link

Per port customization example contains double expansion #399

Closed ras0219-msft closed 2 months ago

ras0219-msft commented 2 months ago

https://learn.microsoft.com/en-us/vcpkg/users/triplets#per-port-customization

if(${PORT} MATCHES "qt5-") potentially double-expands PORT. The correct string is if(PORT MATCHES "qt5-").