Set MESON_ARGS and MESON_HOST_ARGS when calling ninja for building.
This is required eg. to be able to set PYTHONPATH= not just for the
Meson (==configure) run but also for the build phase itself.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
endef
define Host/Compile/Meson
- +$(NINJA) -C $(MESON_HOST_BUILD_DIR) $(1)
+ +$(MESON_HOST_VARS) $(NINJA) -C $(MESON_HOST_BUILD_DIR) $(1)
endef
define Host/Install/Meson
endef
define Build/Compile/Meson
- +$(NINJA) -C $(MESON_BUILD_DIR) $(1)
+ +$(MESON_VARS) $(NINJA) -C $(MESON_BUILD_DIR) $(1)
endef
define Build/Install/Meson