summaryrefslogtreecommitdiff
path: root/pkg/package_variables.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/package_variables.bzl')
-rw-r--r--pkg/package_variables.bzl4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/package_variables.bzl b/pkg/package_variables.bzl
index 865fefd..28f62c9 100644
--- a/pkg/package_variables.bzl
+++ b/pkg/package_variables.bzl
@@ -16,6 +16,6 @@
def add_ctx_variables(ctx, values):
"""Add selected variables from ctx."""
- values['target_cpu'] = ctx.var.get("TARGET_CPU")
- values['compilation_mode'] = ctx.var.get("COMPILATION_MODE")
+ values["target_cpu"] = ctx.var.get("TARGET_CPU")
+ values["compilation_mode"] = ctx.var.get("COMPILATION_MODE")
return values