aboutsummaryrefslogtreecommitdiff
path: root/bindings/python/build_defs.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/python/build_defs.bzl')
-rw-r--r--bindings/python/build_defs.bzl4
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/python/build_defs.bzl b/bindings/python/build_defs.bzl
index 45907aa..009820a 100644
--- a/bindings/python/build_defs.bzl
+++ b/bindings/python/build_defs.bzl
@@ -8,8 +8,8 @@ def py_extension(name, srcs, hdrs = [], copts = [], features = [], deps = []):
shared_lib_name = name + shared_lib_suffix
native.cc_binary(
name = shared_lib_name,
- linkshared = 1,
- linkstatic = 1,
+ linkshared = True,
+ linkstatic = True,
srcs = srcs + hdrs,
copts = copts,
features = features,