diff options
author | Anjan Nath <kaludios@gmail.com> | 2022-08-04 12:18:31 +0530 |
---|---|---|
committer | Ashley Cui <acui@redhat.com> | 2022-08-04 09:46:35 -0400 |
commit | bf2a53a2e0271edb08ad07bb0d5805e8426f72ff (patch) | |
tree | 2afe37639b3645253898af438611d96f7a059ee6 /contrib/pkginstaller/README.md | |
parent | d4481a317008a739679a3da3feead5f3c35715b0 (diff) | |
download | podman-bf2a53a2e0271edb08ad07bb0d5805e8426f72ff.tar.gz podman-bf2a53a2e0271edb08ad07bb0d5805e8426f72ff.tar.bz2 podman-bf2a53a2e0271edb08ad07bb0d5805e8426f72ff.zip |
pkginstaller: use correct GOARCH while building podman binaries
we were not using the correct GOARCH to build the podman remote
and podman-mac-helper binaries, this uses the ARCH value passed
to the make invocation to set the GORACH
[NO NEW TESTS NEEDED]
Signed-off-by: Anjan Nath <kaludios@gmail.com>
Diffstat (limited to 'contrib/pkginstaller/README.md')
-rw-r--r-- | contrib/pkginstaller/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pkginstaller/README.md b/contrib/pkginstaller/README.md index 1951d4eab..7aaf64808 100644 --- a/contrib/pkginstaller/README.md +++ b/contrib/pkginstaller/README.md @@ -11,7 +11,7 @@ $ make ARCH=<amd64 | aarch64> CODESIGN_IDENTITY=<ID> PRODUCTSIGN_IDENTITY=<ID> N ``` The generated pkg will be written to `out/podman-macos-installer-*.pkg`. -Currently the pkg installs `podman`, `qemu`, `gvproxy` and `podman-mac-helper` to `/Applications/podman` +Currently the pkg installs `podman`, `qemu`, `gvproxy` and `podman-mac-helper` to `/opt/podman` The `qemu` build it uses is from [containers/podman-machine-qemu](https://github.com/containers/podman-machine-qemu) |