Skip to content

Commit

Permalink
drake_cc: Do not collect installed headers for drake_shared_library
Browse files Browse the repository at this point in the history
  • Loading branch information
EricCousineau-TRI committed Nov 13, 2018
1 parent bd37fec commit d2e8942
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/skylark/drake_cc.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ def installed_headers_for_drake_deps(deps):
for x in deps
if (
not x.startswith("@") and
not x.startswith("//drake/lcmtypes:")
not x.startswith("//drake/lcmtypes:") and
not x == "//:drake_shared_library"
)
]

Expand Down

0 comments on commit d2e8942

Please sign in to comment.