From d59dba37e02a08c9e0bc52a325d3f974b2d1e659 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Thu, 9 Jul 2026 09:14:43 +0200 Subject: [PATCH] ldlibpath.mk: Don't include py-path.mk anylonger For backwards compatibility, ldlibpath.mk kept py-path.mk included. The projects depending on that have been fixed by now and this is no longer needed. So, move it to the py-defs.mk where it belongs and has narrower scope. Signed-off-by: Jan Lindemann --- make/ldlibpath.mk | 2 -- make/py-defs.mk | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/make/ldlibpath.mk b/make/ldlibpath.mk index b0373d74..f11406cf 100644 --- a/make/ldlibpath.mk +++ b/make/ldlibpath.mk @@ -16,5 +16,3 @@ ifeq ($(origin JW_PKG_EXE_PATH),undefined) JW_PKG_EXE_PATH := $(call proj_query, exepath --delimiter ' ' $(PROJECT) $(PREREQ_RUN)) endif export PATH := $(subst $(space),:,$(JW_PKG_EXE_PATH)):$(EXE_SEARCH_PATH_ENV) - -include $(JWBDIR)/make/py-path.mk diff --git a/make/py-defs.mk b/make/py-defs.mk index 3f02d78c..915491a2 100644 --- a/make/py-defs.mk +++ b/make/py-defs.mk @@ -93,4 +93,4 @@ endif PY_DEFS_MK_INCLUDED := true -include $(JWBDIR)/make/ldlibpath.mk +include $(JWBDIR)/make/py-path.mk