Merge pull request #899 from pherl/cc_bazel

Use && for internal_copied_filegroup.
pull/901/head
Jisi Liu 9 years ago
commit 96da4edde0
  1. 4
      protobuf.bzl

@ -180,8 +180,8 @@ 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(

Loading…
Cancel
Save