vcpkg/ports/capnproto
Billy O'Neal 4945d50e90
[capnproto] Remove vcpkg_fail_port_install. (#22730)
* [capnproto] Remove vcpkg_fail_port_install.

The portfile and vcpkg.json disagreed.

```
vcpkg.json: !uwp & !((arm | arm64) & windows)
portfile:   !uwp & (!windows | !(arm | arm64))
```

If we demorgan the supports expression once they agree:

```
!uwp & (!(arm | arm64) | !windows)
```

Also, arm64 implies arm:

```
!uwp & (!arm | !windows)
```

In support of https://github.com/microsoft/vcpkg/pull/21502

* Put the supports expression into DNF as suggested by @strega-nil.
2022-01-24 13:51:42 -08:00
..
portfile.cmake [capnproto] Remove vcpkg_fail_port_install. (#22730) 2022-01-24 13:51:42 -08:00
vcpkg.json [capnproto] Remove vcpkg_fail_port_install. (#22730) 2022-01-24 13:51:42 -08:00