summaryrefslogtreecommitdiff
path: root/pkg/reexec
diff options
context:
space:
mode:
authorYong Tang <yong.tang.github@outlook.com>2017-11-01 23:37:53 +0000
committerYong Tang <yong.tang.github@outlook.com>2017-11-02 00:01:46 +0000
commit4785f1a7ab7ec857dc3ca849ee6ecadf519ef30e (patch)
treed7e76b15c48467baa369c5b8644c4dbbea94dcf3 /pkg/reexec
parentdeae42863209d742ddf96c922e12268c6d887033 (diff)
downloaddocker-4785f1a7ab7ec857dc3ca849ee6ecadf519ef30e.tar.gz
Remove solaris build tag and `contrib/mkimage/solaris
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
Diffstat (limited to 'pkg/reexec')
-rw-r--r--pkg/reexec/command_unix.go2
-rw-r--r--pkg/reexec/command_unsupported.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/pkg/reexec/command_unix.go b/pkg/reexec/command_unix.go
index 778a720e3b..55c0c97d96 100644
--- a/pkg/reexec/command_unix.go
+++ b/pkg/reexec/command_unix.go
@@ -1,4 +1,4 @@
-// +build freebsd solaris darwin
+// +build freebsd darwin
package reexec
diff --git a/pkg/reexec/command_unsupported.go b/pkg/reexec/command_unsupported.go
index 76edd82427..6f5e55d001 100644
--- a/pkg/reexec/command_unsupported.go
+++ b/pkg/reexec/command_unsupported.go
@@ -1,4 +1,4 @@
-// +build !linux,!windows,!freebsd,!solaris,!darwin
+// +build !linux,!windows,!freebsd,!darwin
package reexec
@@ -6,7 +6,7 @@ import (
"os/exec"
)
-// Command is unsupported on operating systems apart from Linux, Windows, Solaris and Darwin.
+// Command is unsupported on operating systems apart from Linux, Windows, and Darwin.
func Command(args ...string) *exec.Cmd {
return nil
}