From 6f17902027c0c2c187acbe475f7dc15d3f2bc5fb Mon Sep 17 00:00:00 2001 From: Chris Bednarski Date: Tue, 17 Nov 2015 17:29:27 -0800 Subject: [PATCH] Added some missing dependencies for linux x-compile --- scripts/deps.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/deps.sh b/scripts/deps.sh index d2352b782..2c2899ff2 100755 --- a/scripts/deps.sh +++ b/scripts/deps.sh @@ -7,6 +7,8 @@ GOOS=linux go get $DEP_ARGS github.com/docker/docker/pkg/units GOOS=linux go get $DEP_ARGS github.com/docker/docker/pkg/mount GOOS=linux go get $DEP_ARGS github.com/opencontainers/runc/libcontainer/cgroups/fs GOOS=linux go get $DEP_ARGS github.com/opencontainers/runc/libcontainer/configs +GOOS=linux go get $DEP_ARGS github.com/coreos/go-systemd/util +GOOS=linux go get $DEP_ARGS github.com/coreos/go-systemd/dbus # Get the rest of the deps DEPS=$(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)