From 4ba794a19ab5f9495b7a04aa299f2011ee5b7e2d Mon Sep 17 00:00:00 2001 From: Tobias Bucher Date: Sun, 20 Nov 2016 18:12:44 +0100 Subject: [PATCH] Automatically detect NetBSD during standard install --- rustup-init.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rustup-init.sh b/rustup-init.sh index a7853c0d36..e2e732f739 100755 --- a/rustup-init.sh +++ b/rustup-init.sh @@ -126,6 +126,10 @@ get_architecture() { local _ostype=unknown-freebsd ;; + NetBSD) + local _ostype=unknown-netbsd + ;; + DragonFly) local _ostype=unknown-dragonfly ;;