diff options
author | Rosen Penev <rosenp@gmail.com> | 2021-10-19 00:47:16 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2021-10-21 14:38:53 -0700 |
commit | 89c2971c6effb3c1b3525cdb26e20c95013f6701 (patch) | |
tree | bd8ec32f4fd8d8e966c489dfb73c195fe812250d /libs/protobuf-c | |
parent | c2fc267476d94304f8ea91b370f438e0e1d38985 (diff) |
protobuf-c: don't build shared host library
No point and can avoid rpath hacks.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'libs/protobuf-c')
-rw-r--r-- | libs/protobuf-c/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/protobuf-c/Makefile b/libs/protobuf-c/Makefile index b197f3c52..8c79a8884 100644 --- a/libs/protobuf-c/Makefile +++ b/libs/protobuf-c/Makefile @@ -46,7 +46,7 @@ define Package/libprotobuf-c/description endef CMAKE_HOST_OPTIONS += \ - -DBUILD_SHARED_LIBS=ON \ + -DBUILD_SHARED_LIBS=OFF \ -DCMAKE_CXX_STANDARD=11 \ -DCMAKE_SKIP_RPATH=OFF \ -DCMAKE_INSTALL_RPATH="${STAGING_DIR_HOSTPKG}/lib" |