aboutsummaryrefslogtreecommitdiffhomepage
path: root/bazel/grpc_build_system.bzl
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2016-10-21 19:37:13 +0200
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2016-10-21 19:37:13 +0200
commit52aff50578a7723e8f773837a8463b4231912188 (patch)
tree3172c69c678ff8ccdff83b0c9153f5f919cd0eb3 /bazel/grpc_build_system.bzl
parent799bd5efb70b0abe076353dedd6a1983f1b01951 (diff)
parentd196c8adb3b8ace4bc1a0a0d43c10ce03bf51d7b (diff)
Merge remote-tracking branch 'ctiller/bazel' into bazel-take-2
Diffstat (limited to 'bazel/grpc_build_system.bzl')
-rw-r--r--bazel/grpc_build_system.bzl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bazel/grpc_build_system.bzl b/bazel/grpc_build_system.bzl
index 70a7001d75..daf8b78527 100644
--- a/bazel/grpc_build_system.bzl
+++ b/bazel/grpc_build_system.bzl
@@ -35,7 +35,7 @@
def grpc_cc_library(name, srcs = [], public_hdrs = [], hdrs = [], external_deps = [], deps = [], standalone = False, language = "C++"):
copts = []
- if language == "C":
+ if language.upper() == "C":
copts = ["-std=c99"]
native.cc_library(
name = name,