diff options
author | Paul Holzinger <pholzing@redhat.com> | 2021-06-10 10:00:21 +0200 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2021-06-10 10:25:16 +0200 |
commit | c3a14103fb3b9e3b1275446b03318b751e10e6db (patch) | |
tree | 85aec8ee7dc22529e91d9969816f278bd0853cde /pkg/machine/machine_unsupported.go | |
parent | ea39735845655aaf77de577a35557a0fb003514f (diff) | |
download | podman-c3a14103fb3b9e3b1275446b03318b751e10e6db.tar.gz podman-c3a14103fb3b9e3b1275446b03318b751e10e6db.tar.bz2 podman-c3a14103fb3b9e3b1275446b03318b751e10e6db.zip |
Fix build tags for pkg/machine...
Podman machine is only intended for amd64 and arm64 architectures, set
the correct buildtags so that the `pkg/machine`, `pkg/machine/qemu` and
`pkg/machine/libvirt` packages compile correctly.
[NO TESTS NEEDED]
Fixes #10625
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'pkg/machine/machine_unsupported.go')
-rw-r--r-- | pkg/machine/machine_unsupported.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/machine/machine_unsupported.go b/pkg/machine/machine_unsupported.go new file mode 100644 index 000000000..9309d16bc --- /dev/null +++ b/pkg/machine/machine_unsupported.go @@ -0,0 +1,3 @@ +// +build !amd64 amd64,windows + +package machine |