diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 9cf1eff2..5909ea93 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -31,7 +31,7 @@ }, { "ImportPath": "github.com/kardianos/osext", - "Rev": "431e263e413efe4446ede50cec4819b26659fbe7" + "Rev": "29ae4ffbc9a6fe9fb2bc5029050ce6996ea1d3bc" }, { "ImportPath": "github.com/rcrowley/go-metrics", diff --git a/Godeps/_workspace/src/github.com/kardianos/osext/osext_procfs.go b/Godeps/_workspace/src/github.com/kardianos/osext/osext_procfs.go index 8a0dccbb..d59847ee 100644 --- a/Godeps/_workspace/src/github.com/kardianos/osext/osext_procfs.go +++ b/Godeps/_workspace/src/github.com/kardianos/osext/osext_procfs.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 netbsd solaris dragonfly freebsd +// +build linux netbsd solaris dragonfly package osext @@ -27,8 +27,6 @@ func executable() (string, error) { return execpath, nil case "netbsd": return os.Readlink("/proc/curproc/exe") - case "freebsd": - return os.Readlink("/proc/curproc/file") case "dragonfly": return os.Readlink("/proc/curproc/file") case "solaris": diff --git a/Godeps/_workspace/src/github.com/kardianos/osext/osext_sysctl.go b/Godeps/_workspace/src/github.com/kardianos/osext/osext_sysctl.go index 1ccce930..66da0bcf 100644 --- a/Godeps/_workspace/src/github.com/kardianos/osext/osext_sysctl.go +++ b/Godeps/_workspace/src/github.com/kardianos/osext/osext_sysctl.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 darwin openbsd +// +build darwin freebsd openbsd package osext