From 751c4efe7f10d1450bd636e88b10994a3cdbf857 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20=C5=81yszczek?= Date: Fri, 14 Feb 2025 18:52:50 +0100 Subject: [PATCH] system/psmq: add proper include path for embedlog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit embedlog.h were residing in include/system path, but has been moved to include/logging. This causes psmq to not be able to find include, which results in compilation error Signed-off-by: Michał Łyszczek --- system/psmq/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/system/psmq/Makefile b/system/psmq/Makefile index 1175a9a88..5517278e2 100644 --- a/system/psmq/Makefile +++ b/system/psmq/Makefile @@ -35,6 +35,7 @@ PSMQ_SOURCES = psmq-$(PSMQ_VERSION) PSMQ_TARBALL = $(PSMQ_SOURCES).$(PSMQ_EXT) CFLAGS += ${INCDIR_PREFIX}$(APPDIR)$(DELIM)include$(DELIM)system +CFLAGS += ${INCDIR_PREFIX}$(APPDIR)$(DELIM)include$(DELIM)logging CFLAGS += ${INCDIR_PREFIX}$(APPDIR)$(DELIM)system$(DELIM)psmq$(DELIM)$(PSMQ_SOURCES) # mandatory source files to compile