mirror of
https://github.com/containers/podman.git
synced 2025-06-21 01:19:15 +08:00
pkginstaller: use correct GOARCH value in case of arm build
to compile arm bits the GOARCH should be set to amd64 script was wrongly using aarch64 instead [NO NEW TESTS NEEDED] Signed-off-by: Anjan Nath <kaludios@gmail.com>
This commit is contained in:
@ -17,8 +17,12 @@ arch=$(cat "${BASEDIR}/ARCH")
|
|||||||
|
|
||||||
function build_podman() {
|
function build_podman() {
|
||||||
pushd "$1"
|
pushd "$1"
|
||||||
make GOARCH="${arch}" podman-remote HELPER_BINARIES_DIR="${HELPER_BINARIES_DIR}"
|
local goArch="${arch}"
|
||||||
make GOARCH="${arch}" podman-mac-helper
|
if [ "${goArch}" = aarch64 ]; then
|
||||||
|
goArch=arm64
|
||||||
|
fi
|
||||||
|
make GOARCH="${goArch}" podman-remote HELPER_BINARIES_DIR="${HELPER_BINARIES_DIR}"
|
||||||
|
make GOARCH="${goArch}" podman-mac-helper
|
||||||
cp bin/darwin/podman "contrib/pkginstaller/out/packaging/${binDir}/podman"
|
cp bin/darwin/podman "contrib/pkginstaller/out/packaging/${binDir}/podman"
|
||||||
cp bin/darwin/podman-mac-helper "contrib/pkginstaller/out/packaging/${binDir}/podman-mac-helper"
|
cp bin/darwin/podman-mac-helper "contrib/pkginstaller/out/packaging/${binDir}/podman-mac-helper"
|
||||||
popd
|
popd
|
||||||
|
Reference in New Issue
Block a user