1
1
mirror of https://github.com/kanaka/mal.git synced 2024-11-10 12:47:45 +03:00

Don't pass MAKE into dockerized calls.

The outer and inner MAKE path may be unrelated.
This commit is contained in:
Joel Martin 2024-07-30 14:08:50 -05:00
parent dcf8f4d7b9
commit 96e6d9c81a

View File

@ -143,7 +143,7 @@ get_build_command = $(strip $(foreach mode,$(1)_MODE, \
$(if $(strip $($(mode))),-e $(mode)=$($(mode)),) \
$(if $(filter factor,$(1)),-e FACTOR_ROOTS=$(FACTOR_ROOTS),) \
$(call impl_to_image,$(1)) \
$(MAKE) $(if $(strip $($(mode))),$(mode)=$($(mode)),) \
make $(if $(strip $($(mode))),$(mode)=$($(mode)),) \
,\
$(MAKE) $(if $(strip $($(mode))),$(mode)=$($(mode)),) -C impls/$(impl))))