use double quotes for buildtags

This commit is contained in:
Lokesh Mandvekar 2023-08-11 14:10:23 -04:00
parent 2ded9f0893
commit 047a9f8cdf

View File

@ -119,9 +119,9 @@ export CGO_CFLAGS+=" -m64 -mtune=generic -fcf-protection=full"
export CNI_VERSION=`grep '^# github.com/containernetworking/cni ' src/modules.txt | sed 's,.* ,,'`
export LDFLAGS="-X main.buildInfo=`date +%s` -X main.cniVersion=${CNI_VERSION}"
export BUILDTAGS='seccomp exclude_graphdriver_devicemapper $(hack/systemd_tag.sh) $(hack/libsubid_tag.sh)'
export BUILDTAGS="seccomp exclude_graphdriver_devicemapper $(hack/systemd_tag.sh) $(hack/libsubid_tag.sh)"
%if !%{defined build_with_btrfs}
export BUILDTAGS+=' btrfs_noversion exclude_graphdriver_btrfs'
export BUILDTAGS+=" btrfs_noversion exclude_graphdriver_btrfs"
%endif
%gobuild -o bin/%{name} ./cmd/%{name}