From be00d38a35ff252d42b69aea70c520bf515130c8 Mon Sep 17 00:00:00 2001 From: Joel Sing Date: Mon, 22 Aug 2011 23:24:25 -0400 Subject: [PATCH] build: add openbsd R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4832047 --- src/Make.inc | 1 + src/cmd/cov/Makefile | 1 + src/cmd/prof/Makefile | 1 + 3 files changed, 3 insertions(+) diff --git a/src/Make.inc b/src/Make.inc index 8f549f6245..7e815c0103 100644 --- a/src/Make.inc +++ b/src/Make.inc @@ -33,6 +33,7 @@ GOOS_LIST=\ darwin\ freebsd\ linux\ + openbsd\ plan9\ windows\ diff --git a/src/cmd/cov/Makefile b/src/cmd/cov/Makefile index 95dba9c60f..62836fcacb 100644 --- a/src/cmd/cov/Makefile +++ b/src/cmd/cov/Makefile @@ -29,6 +29,7 @@ endif install: install-$(NAME) install-linux: install-default install-freebsd: install-default +install-openbsd: install-default install-windows: install-default # on Darwin, have to install and setgid; see $GOROOT/src/sudo.bash diff --git a/src/cmd/prof/Makefile b/src/cmd/prof/Makefile index 8a1a2f3083..6cefceb8ed 100644 --- a/src/cmd/prof/Makefile +++ b/src/cmd/prof/Makefile @@ -25,6 +25,7 @@ endif install: install-$(NAME) install-pprof install-linux: install-default install-freebsd: install-default +install-openbsd: install-default install-windows: install-default # on Darwin, have to install and setgid; see $GOROOT/src/sudo.bash -- 2.50.0