aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/gRPC.podspec.template
diff options
context:
space:
mode:
Diffstat (limited to 'templates/gRPC.podspec.template')
-rw-r--r--templates/gRPC.podspec.template4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/gRPC.podspec.template b/templates/gRPC.podspec.template
index e85848199e..1f7de5ce94 100644
--- a/templates/gRPC.podspec.template
+++ b/templates/gRPC.podspec.template
@@ -25,7 +25,7 @@ Pod::Spec.new do |s|
s.subspec 'C-Core' do |cs|
cs.source_files = \
% for lib in libs:
-% if lib.build in ("all"):
+% if lib.name in ("grpc", "gpr"):
% for hdr in lib.get("headers", []):
'${hdr}', \
% endfor
@@ -40,7 +40,7 @@ Pod::Spec.new do |s|
cs.private_header_files = \
% for lib in libs:
-% if lib.build in ("all"):
+% if lib.name in ("grpc", "gpr"):
% for hdr in lib.get("headers", []):
'${hdr}', \
% endfor