Browse code

Fix lxc driver build issue on Mac OS X

Docker-DCO-1.1-Signed-off-by: Albert Zhang <zhgwenming@gmail.com> (github: zhgwenming)

Albert Zhang authored on 2014/10/17 10:41:23
Showing 1 changed files
... ...
@@ -2,12 +2,10 @@
2 2
 
3 3
 package lxc
4 4
 
5
-import "github.com/docker/docker/daemon/execdriver"
6
-
7 5
 func setHostname(hostname string) error {
8 6
 	panic("Not supported on darwin")
9 7
 }
10 8
 
11
-func finalizeNamespace(args *execdriver.InitArgs) error {
9
+func finalizeNamespace(args *InitArgs) error {
12 10
 	panic("Not supported on darwin")
13 11
 }