Commit 96da4edd authored by Jisi Liu's avatar Jisi Liu

Merge pull request #899 from pherl/cc_bazel

Use && for internal_copied_filegroup.
parents 66e3a6d0 6ddcae22
...@@ -180,9 +180,9 @@ def internal_copied_filegroup( ...@@ -180,9 +180,9 @@ def internal_copied_filegroup(
name=name+"_genrule", name=name+"_genrule",
srcs=srcs, srcs=srcs,
outs=outs, outs=outs,
cmd=";".join(["cp $(location %s) $(location %s)" % \ cmd=" && ".join(["cp $(location %s) $(location %s)" %
(s, _RelativeOutputPath(s, include)) \ (s, _RelativeOutputPath(s, include))
for s in srcs])) for s in srcs]))
native.filegroup( native.filegroup(
name=name, name=name,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment