From b7d88a6e224c0256f95f1cc15dc36159cf8c5e47 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Tue, 18 Nov 2025 12:04:29 +0100 Subject: [PATCH] py-defs.mk: Default PY_UPDATE_INIT_PY ?= true Set PY_UPDATE_INIT_PY to true to match jw-build's default behaviour before the variable was introduced. Signed-off-by: Jan Lindemann --- make/py-defs.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/py-defs.mk b/make/py-defs.mk index 3726ab6e..b56445c0 100644 --- a/make/py-defs.mk +++ b/make/py-defs.mk @@ -56,7 +56,7 @@ else PY_INSTALL_DIR_PYC ?= $(PY_INSTALL_DIR_PY) endif -PY_UPDATE_INIT_PY ?= false +PY_UPDATE_INIT_PY ?= true PY_INSTALL ?= true PY_INSTALL_REG ?= true ifneq ($(PY_INSTALL),true)