Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c638789 commit d6d8480Copy full SHA for d6d8480
2 files changed
misc/bazel/workspace.bzl
@@ -61,6 +61,6 @@ def codeql_workspace(repository_name = "codeql"):
61
name = "fishhook",
62
commit = "aadc161ac3b80db07a9908851839a17ba63a9eb1",
63
shallow_since = "1634071885 -0400",
64
- build_file = "//swift/tools/fishhook:BUILD.fishhook.bazel",
+ build_file = "@%s//swift/tools/fishhook:BUILD.fishhook.bazel" % repository_name,
65
remote = "https://github.com/facebook/fishhook",
66
)
swift/tools/fishhook/BUILD.fishhook.bazel
@@ -1,9 +1,7 @@
1
-load("@//swift:rules.bzl", "swift_cc_library")
2
-
3
-swift_cc_library(
+cc_library(
4
5
srcs = glob(["*.c"]),
6
hdrs = glob(["*.h"]),
7
strip_include_prefix = ".",
8
- visibility = ["@//swift:__subpackages__"],
+ visibility = ["//visibility:public"],
9
0 commit comments