From 14718be25c488fcbba186be658e1a44c38b5adbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damian=20Kr=C3=B3lik?= <66667989+Damian-Nordic@users.noreply.github.com> Date: Tue, 15 Jun 2021 17:26:38 +0200 Subject: [PATCH] [nrfconnect] Fix build with Zephyr shell integration (#7639) Files from src/app/server were needlessly linked into libCHIPZephyrShell static library causing linker errors. --- src/platform/nrfconnect/shell/BUILD.gn | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/platform/nrfconnect/shell/BUILD.gn b/src/platform/nrfconnect/shell/BUILD.gn index 3c8b467906477f..04874cd17e6930 100644 --- a/src/platform/nrfconnect/shell/BUILD.gn +++ b/src/platform/nrfconnect/shell/BUILD.gn @@ -23,6 +23,4 @@ static_library("chip-zephyr-shell") { cflags = [ "-Wconversion" ] public_deps = [ "${chip_root}/src/app/server" ] - - complete_static_lib = true }