We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 374ef99 + 751f573 commit 0ce30b3Copy full SHA for 0ce30b3
private/erlang_bytecode.bzl
@@ -61,7 +61,9 @@ def _impl(ctx):
61
62
dest_dir = beam_files[0].dirname
63
64
- include_args = ["-I", package_dir]
+ include_args = []
65
+ if package_dir != "":
66
+ include_args.extend(["-I", package_dir])
67
for dir in unique_dirnames(ctx.files.hdrs):
68
include_args.extend(["-I", dir])
69
private/erlang_bytecode2.bzl
@@ -63,7 +63,9 @@ def _impl(ctx):
fail(ctx.attr.outs, "do not share a common parent directory")
out_dir = out_dirs[0]
70
71
0 commit comments