summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes-containers/docker/docker_git.bb5
1 files changed, 3 insertions, 2 deletions
diff --git a/recipes-containers/docker/docker_git.bb b/recipes-containers/docker/docker_git.bb
index feca5362..e45f87e0 100644
--- a/recipes-containers/docker/docker_git.bb
+++ b/recipes-containers/docker/docker_git.bb
@@ -63,6 +63,8 @@ PV = "${DOCKER_VERSION}+git${SRCREV_moby}"
63PACKAGES =+ "${PN}-contrib" 63PACKAGES =+ "${PN}-contrib"
64 64
65DOCKER_PKG="github.com/docker/docker" 65DOCKER_PKG="github.com/docker/docker"
66# in order to exclude devicemapper and btrfs - https://github.com/docker/docker/issues/14056
67BUILD_TAGS = "exclude_graphdriver_btrfs exclude_graphdriver_devicemapper"
66 68
67inherit go 69inherit go
68inherit goarch 70inherit goarch
@@ -91,8 +93,7 @@ do_compile() {
91 export CGO_ENABLED="1" 93 export CGO_ENABLED="1"
92 export CGO_CFLAGS="${CFLAGS} --sysroot=${STAGING_DIR_TARGET}" 94 export CGO_CFLAGS="${CFLAGS} --sysroot=${STAGING_DIR_TARGET}"
93 export CGO_LDFLAGS="${LDFLAGS} --sysroot=${STAGING_DIR_TARGET}" 95 export CGO_LDFLAGS="${LDFLAGS} --sysroot=${STAGING_DIR_TARGET}"
94 # in order to exclude devicemapper and btrfs - https://github.com/docker/docker/issues/14056 96 export DOCKER_BUILDTAGS='${BUILD_TAGS} ${PACKAGECONFIG_CONFARGS}'
95 export DOCKER_BUILDTAGS='exclude_graphdriver_btrfs exclude_graphdriver_devicemapper ${PACKAGECONFIG_CONFARGS}'
96 97
97 export DISABLE_WARN_OUTSIDE_CONTAINER=1 98 export DISABLE_WARN_OUTSIDE_CONTAINER=1
98 99