From 91ab1401ab00a2b9f3b61923170be31cce29becf Mon Sep 17 00:00:00 2001 From: Tonis Tiigi Date: Thu, 5 Mar 2015 17:47:03 +0200 Subject: [PATCH] Fix nofuse build tags syntax --- core/commands/mount_nofuse.go | 3 ++- core/commands/mount_unix.go | 3 ++- fuse/ipns/mount_unix.go | 3 ++- fuse/readonly/mount_unix.go | 3 ++- fuse/readonly/readonly_unix.go | 3 ++- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/core/commands/mount_nofuse.go b/core/commands/mount_nofuse.go index 60c2b0101..4613aaabd 100644 --- a/core/commands/mount_nofuse.go +++ b/core/commands/mount_nofuse.go @@ -1,4 +1,5 @@ -// +build (linux darwin freebsd) and nofuse +// +build linux darwin freebsd +// +build nofuse package commands diff --git a/core/commands/mount_unix.go b/core/commands/mount_unix.go index 987cde5c4..4f77f3892 100644 --- a/core/commands/mount_unix.go +++ b/core/commands/mount_unix.go @@ -1,4 +1,5 @@ -// +build (linux darwin freebsd) and !nofuse +// +build linux darwin freebsd +// +build !nofuse package commands diff --git a/fuse/ipns/mount_unix.go b/fuse/ipns/mount_unix.go index 37eb8aa10..fe9012b3b 100644 --- a/fuse/ipns/mount_unix.go +++ b/fuse/ipns/mount_unix.go @@ -1,4 +1,5 @@ -// +build (linux darwin freebsd) and !nofuse +// +build linux darwin freebsd +// +build !nofuse package ipns diff --git a/fuse/readonly/mount_unix.go b/fuse/readonly/mount_unix.go index 54e2ae47a..9c9ebcf0d 100644 --- a/fuse/readonly/mount_unix.go +++ b/fuse/readonly/mount_unix.go @@ -1,4 +1,5 @@ -// +build (linux darwin freebsd) and !nofuse +// +build linux darwin freebsd +// +build !nofuse package readonly diff --git a/fuse/readonly/readonly_unix.go b/fuse/readonly/readonly_unix.go index 159dd0718..778cfef6b 100644 --- a/fuse/readonly/readonly_unix.go +++ b/fuse/readonly/readonly_unix.go @@ -1,4 +1,5 @@ -// +build (linux darwin freebsd) and !nofuse +// +build linux darwin freebsd +// +build !nofuse // package fuse/readonly implements a fuse filesystem to access files // stored inside of ipfs.