Makefile: support OCI_EXE environmental variable

Allow setting podman for image builds.
This commit is contained in:
Matt McCormick 2024-03-25 21:42:18 -04:00
parent 9e57d2bd8f
commit 55d275535c

View File

@ -4,7 +4,7 @@
# #
# Name of the docker executable # Name of the docker executable
DOCKER := docker DOCKER := $(or $(OCI_EXE), docker)
# Docker organization to pull the images from # Docker organization to pull the images from
ORG = dockcross ORG = dockcross