File: allow_builds_using_bazel_source.patch

package info (click to toggle)
bazel-bootstrap 4.2.3%2Bds-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 85,704 kB
  • sloc: java: 721,717; sh: 55,859; cpp: 35,360; python: 12,139; xml: 295; objc: 269; makefile: 113; ansic: 106; ruby: 3
file content (30 lines) | stat: -rw-r--r-- 896 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Description: Allow external software to build using Bazel source code
 Use "@io_bazel//" instead of "//" to reference Bazel packages
Author: Olek Wojnar <olek@debian.org>
Forwarded: not-needed
Last-Update: 2022-11-09

--- a/tools/distributions/debian/debian_java.BUILD
+++ b/tools/distributions/debian/debian_java.BUILD
@@ -217,9 +217,9 @@
     name = "guava",
     jars = ["guava.jar"],
     exports = [
-        "@//third_party:error_prone_annotations",
-        "@//third_party:jcip_annotations",
-        "@//third_party:jsr305",
+        "@io_bazel//third_party:error_prone_annotations",
+        "@io_bazel//third_party:jcip_annotations",
+        "@io_bazel//third_party:jsr305",
     ],
 )
 
@@ -353,7 +353,7 @@
     runtime_deps = [
         ":api_client",
         ":guava",
-        "@//third_party/aws-sdk-auth-lite",
+        "@io_bazel//third_party/aws-sdk-auth-lite",
     ],
 )