From 405dcf239b9898f10ec99abcf636782a98bcc6ba Mon Sep 17 00:00:00 2001 From: Sebastian Kemper Date: Sun, 26 Jun 2022 11:26:10 +0200 Subject: [PATCH] protobuf: fix 022aef6 The cherry-pick done in 022aef6 includes changing the build setup from cmake to ninja, but it was overlooked that this was actually reverted in 2e654b1. The ninja build results in headers not being installed for the host pkg, so protobuf-c/host can't be build. This commit reverts the package back to cmake. Signed-off-by: Sebastian Kemper --- libs/protobuf/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/protobuf/Makefile b/libs/protobuf/Makefile index 3fbfd6eea6..7bf304c8fb 100644 --- a/libs/protobuf/Makefile +++ b/libs/protobuf/Makefile @@ -24,7 +24,7 @@ CMAKE_SOURCE_SUBDIR:=cmake include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/host-build.mk -include ../../devel/ninja/ninja-cmake.mk +include $(INCLUDE_DIR)/cmake.mk define Package/protobuf/Default SECTION:=libs -- 2.30.2