From d6c0aa161e311626b49df3f98d0127ae64582b07 Mon Sep 17 00:00:00 2001 From: Mikio Hara Date: Wed, 21 May 2014 10:45:47 +0900 Subject: [PATCH] go.tools/dashboard/builder: fix build on dragonfly, nacl, solaris LGTM=bradfitz R=adg, bradfitz CC=golang-codereviews https://golang.org/cl/97640043 --- dashboard/builder/filemutex_flock.go | 2 +- dashboard/builder/filemutex_local.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard/builder/filemutex_flock.go b/dashboard/builder/filemutex_flock.go index 3c1d655f..68851b8d 100644 --- a/dashboard/builder/filemutex_flock.go +++ b/dashboard/builder/filemutex_flock.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build linux darwin freebsd +// +build darwin dragonfly freebsd linux netbsd openbsd package main diff --git a/dashboard/builder/filemutex_local.go b/dashboard/builder/filemutex_local.go index 36248f72..68cfb62f 100644 --- a/dashboard/builder/filemutex_local.go +++ b/dashboard/builder/filemutex_local.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build netbsd openbsd plan9 +// +build nacl plan9 solaris package main