diff options
| author | ivysnow <ivy@sgri.net> | 2019-01-08 08:03:35 +0800 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2019-01-07 16:03:35 -0800 |
| commit | 2d63525a154cf6aba8db2014792eec62087fe1e6 (patch) | |
| tree | e833916ef1053cbf60e4835417f1b001cc7536e4 /scripts/bootstrap.sh | |
| parent | a20ac0957a5834e6e6ee7905ec4a31c330567582 (diff) | |
| download | vcpkg-2d63525a154cf6aba8db2014792eec62087fe1e6.tar.gz vcpkg-2d63525a154cf6aba8db2014792eec62087fe1e6.zip | |
[vcpkg] add support for FreeBSD (#4917)
* [vcpkg] add support for FreeBSD
* [x64-freebsd] Remove triplet because it is not currently in the set of supported triplets
Diffstat (limited to 'scripts/bootstrap.sh')
| -rw-r--r-- | scripts/bootstrap.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 4bb428668..7a1b2777b 100644 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -123,6 +123,8 @@ fetchTool() os="linux" elif [ "$UNAME" = "Darwin" ]; then os="osx" + elif [ "$UNAME" = "FreeBSD" ]; then + os="freebsd" else echo "Unknown uname: $UNAME" return 1 |
