mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Use += for appends
This commit is contained in:
parent
6d1c363dde
commit
e292e0452f
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue