diff options
author | baude <bbaude@redhat.com> | 2018-09-11 15:49:46 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-09-12 22:21:50 +0000 |
commit | 08936c32417a87d61b3b33a155dc0679dff73bff (patch) | |
tree | 7198479aeb7f6f17bdc44bda86c221c946f8aefa | |
parent | 60e8e4fb2d11f8270fee17a82c7eb7fbf81bd47f (diff) | |
download | podman-08936c32417a87d61b3b33a155dc0679dff73bff.tar.gz podman-08936c32417a87d61b3b33a155dc0679dff73bff.tar.bz2 podman-08936c32417a87d61b3b33a155dc0679dff73bff.zip |
do not build with devicemapper
as of now, we do not want to build with device mapper because it cannot
handle parallel requests which would be common-place in podman.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #1445
Approved by: mheon
-rw-r--r-- | contrib/spec/podman.spec.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in index 1ac20865d..be7b78227 100644 --- a/contrib/spec/podman.spec.in +++ b/contrib/spec/podman.spec.in @@ -394,7 +394,7 @@ ln -s ../../../../ src/%{import_path} popd ln -s vendor src export GOPATH=$(pwd)/_build:$(pwd):$(pwd):%{gopath} -export BUILDTAGS="varlink selinux seccomp $(hack/btrfs_installed_tag.sh) $(hack/btrfs_tag.sh) $(hack/libdm_tag.sh)" +export BUILDTAGS="varlink selinux seccomp $(hack/btrfs_installed_tag.sh) $(hack/btrfs_tag.sh) $(hack/libdm_tag.sh) exclude_graphdriver_devicemapper" GOPATH=$GOPATH go generate ./cmd/podman/varlink/... BUILDTAGS=$BUILDTAGS make binaries docs |