vcpkg/versions
Billy O'Neal a84adb4e56
[chakracore] Remove vcpkg_fail_port_install. (#22733)
vcpkg.json and portfile.cmake disagreed.

```
vcpkg.json:     !osx & !uwp & (linux | !static)
portfile.cmake: !osx & !uwp & (!windows | !(static | staticcrt))
```

Trying to get portfile.cmake to agree:

```
!osx & !uwp & (!windows | !(static | staticcrt))             given
!osx & !uwp & (!windows | (!static & !staticcrt))            demorgan
```

Considering !osx is earlier, I'm assuming Linux and !Windows are equivalent here:

```
!osx & !uwp & (linux | (!static & !staticcrt))               (above)
```

I'm assuming that portfile.cmake just never considered staticrt and linux, so I'm adding that condition.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 02:20:27 -08:00
..
2021-12-13 12:28:32 -08:00
2022-01-21 13:30:52 -08:00
2022-01-20 10:29:37 -08:00
2022-01-14 16:12:41 -08:00
2022-01-13 09:14:32 -08:00
2022-01-18 13:45:05 -08:00
2021-12-28 15:03:23 -08:00
2021-12-08 13:13:43 -08:00
2022-01-18 12:28:16 -08:00