aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates
diff options
context:
space:
mode:
authorGravatar Muxi Yan <muxi@users.noreply.github.com>2017-08-15 14:02:03 -0700
committerGravatar GitHub <noreply@github.com>2017-08-15 14:02:03 -0700
commite60c0f82b55310efae040534541f5a6acec28aba (patch)
tree4264d7fb0354a1395286f8d1a6e23c300073e90b /templates
parent30b4e74296e612ee404707c8b61b4fc11ba6aadc (diff)
parent43c4710a809fa2e4c30f2cdef2c56a70518974e1 (diff)
Merge pull request #11714 from muxi/port-11712
Port #11712: Fix the nanopb's header include issue
Diffstat (limited to 'templates')
-rw-r--r--templates/gRPC-Core.podspec.template5
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/gRPC-Core.podspec.template b/templates/gRPC-Core.podspec.template
index cfc13cf4dd..616f2cbbff 100644
--- a/templates/gRPC-Core.podspec.template
+++ b/templates/gRPC-Core.podspec.template
@@ -178,4 +178,9 @@
'test/core/util/port.c',
'test/core/util/port_server_client.{c,h}'
end
+
+ # TODO (mxyan): Instead of this hack, add include path "third_party" to C core's include path?
+ s.prepare_command = <<-END_OF_COMMAND
+ find src/core/ -type f -exec sed -E -i '.back' 's;#include "third_party/nanopb/(.*)";#include <nanopb/\\1>;g' {} \\\;
+ END_OF_COMMAND
end