diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-05-26 17:01:10 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-05-27 09:52:36 -0400 |
commit | f8632bad82629d5a918fbb163d67ef8bca96724f (patch) | |
tree | 1b129a531ff203dbb0d142ad4d9600594f79714b /Makefile | |
parent | 9cb5c87284377507aafae8456ee8f00823954712 (diff) | |
download | podman-f8632bad82629d5a918fbb163d67ef8bca96724f.tar.gz podman-f8632bad82629d5a918fbb163d67ef8bca96724f.tar.bz2 podman-f8632bad82629d5a918fbb163d67ef8bca96724f.zip |
Fix builds on 32 bit arches
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ ifeq ($(shell go help mod >/dev/null 2>&1 && echo true), true) GO_BUILD=GO111MODULE=on $(GO) build -mod=vendor endif -BUILDTAGS_CROSS ?= containers_image_openpgp exclude_graphdriver_btrfs exclude_graphdriver_devicemapper exclude_graphdriver_overlay +BUILDTAGS_CROSS ?= ABISupport containers_image_openpgp exclude_graphdriver_btrfs exclude_graphdriver_devicemapper exclude_graphdriver_overlay ifneq (,$(findstring varlink,$(BUILDTAGS))) PODMAN_VARLINK_DEPENDENCIES = pkg/varlink/iopodman.go endif |