vcpkg/ports/chakracore
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
..
fix-debug-linux-build.patch [ChakraCore] Add Linux support (#18476) 2021-07-22 22:58:17 -07:00
no-warning-as-error.props
portfile.cmake [chakracore] Remove vcpkg_fail_port_install. (#22733) 2022-01-24 02:20:27 -08:00
vcpkg.json [chakracore] Remove vcpkg_fail_port_install. (#22733) 2022-01-24 02:20:27 -08:00