From: Petteri Aimonen Date: Tue, 12 Jun 2012 14:51:08 +0000 (+0300) Subject: Add descriptor.proto into the #include exclusion list X-Git-Tag: 3.99.1~14^2~497 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=5af2c97ecd71af46cc45baefb7a7041b5b904efc;p=apps%2Flow-level-can-service.git Add descriptor.proto into the #include exclusion list --- diff --git a/generator/nanopb_generator.py b/generator/nanopb_generator.py index 3915383..d41efb8 100644 --- a/generator/nanopb_generator.py +++ b/generator/nanopb_generator.py @@ -442,7 +442,7 @@ if __name__ == '__main__': # List of .proto files that should not be included in the C header file # even if they are mentioned in the source .proto. - excludes = ['nanopb.proto'] + excludes = ['nanopb.proto', 'google/protobuf/descriptor.proto'] dependencies = [d for d in fdesc.file[0].dependency if d not in excludes] header = open(headername, 'w')