Use += for appends

This commit is contained in:
Rob Earhart 2018-01-06 21:32:32 -08:00 committed by Andreas Schuh
parent 6d1c363dde
commit e292e0452f

View file

@ -85,13 +85,13 @@ def gflags_library(hdrs=[], srcs=[], threads=1):
})
linkopts = []
if threads:
linkopts = linkopts + select({
linkopts += select({
"//:x64_windows": [],
"//conditions:default": ["-lpthread"],
})
else:
name += "_nothreads"
copts = copts + ["-DNO_THREADS"]
copts += ["-DNO_THREADS"]
native.cc_library(
name = name,
hdrs = hdrs,