Merge pull request #9541 from obsidiansystems/config-buildprefix-fix

Including `config.h` also needs `$(buildprefix)`
This commit is contained in:
John Ericson 2023-12-05 17:16:57 -05:00 committed by GitHub
commit 96fdea3394
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,4 +64,4 @@ $(eval $(call include-sub-makefile, doc/manual/local.mk))
$(eval $(call include-sub-makefile, doc/internal-api/local.mk))
endif
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