diff options
| author | Yong Tang <yong.tang.github@outlook.com> | 2017-11-01 23:37:53 +0000 |
|---|---|---|
| committer | Yong Tang <yong.tang.github@outlook.com> | 2017-11-02 00:01:46 +0000 |
| commit | 4785f1a7ab7ec857dc3ca849ee6ecadf519ef30e (patch) | |
| tree | d7e76b15c48467baa369c5b8644c4dbbea94dcf3 /pkg/reexec | |
| parent | deae42863209d742ddf96c922e12268c6d887033 (diff) | |
| download | docker-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.go | 2 | ||||
| -rw-r--r-- | pkg/reexec/command_unsupported.go | 4 |
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 } |
