From 13d2f962575e16215844a187399ff62ca876a1fb Mon Sep 17 00:00:00 2001 From: eldritch horrors Date: Tue, 5 Mar 2024 21:16:55 +0100 Subject: [PATCH] Merge pull request #9541 from obsidiansystems/config-buildprefix-fix Including `config.h` also needs `$(buildprefix)` (cherry picked from commit 96fdea3394ff61e24c53358644a5064218218d13) Change-Id: I8b5c0b1826aa007aa681c8b199f9b1489cac6784 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a2b35edc2..b343bec0f 100644 --- a/Makefile +++ b/Makefile @@ -60,4 +60,4 @@ endif include mk/lib.mk -GLOBAL_CXXFLAGS += -g -Wall -include config.h -std=c++2a -I src +GLOBAL_CXXFLAGS += -g -Wall -include $(buildprefix)config.h -std=c++2a -I src