diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-09-27 15:35:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-27 15:35:58 -0400 |
commit | 340166876eab09d3e363647213f162864a95d270 (patch) | |
tree | b27ef53a9be2bae0ac265416570e29d32b65d72b /Makefile | |
parent | 2fabd44fe5ad39feeb04bd57e7fe6afd354edf20 (diff) | |
parent | 87559b02093a952b8a1e0ef417d82c2c6ad6ff3e (diff) | |
download | podman-340166876eab09d3e363647213f162864a95d270.tar.gz podman-340166876eab09d3e363647213f162864a95d270.tar.bz2 podman-340166876eab09d3e363647213f162864a95d270.zip |
Merge pull request #11759 from jedieaston/msi-fix
Set MSI to be 64-bit only.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -672,7 +672,7 @@ podman-v$(RELEASE_NUMBER).msi: podman-remote-windows podman-remote-windows-docs --directory-ref INSTALLDIR --prefix $(DOCFILE)/ > \ $(DOCFILE)/pages.wsx wixl -D VERSION=$(call err_if_empty,RELEASE_VERSION) -D ManSourceDir=$(DOCFILE) \ - -o $@ contrib/msi/podman.wxs $(DOCFILE)/pages.wsx + -o $@ contrib/msi/podman.wxs $(DOCFILE)/pages.wsx --arch x64 .PHONY: package package: ## Build rpm packages |