mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
benchtests: Use "=" instead of ":=" [BZ #28970]
Use "=" instead of ":=" to allow sysdeps Makefiles to add more benches to bench and benchset. This fixes BZ #28970. Reviewed-by: Sunil K Pandey <skpgkp2@gmail.com>
This commit is contained in:
parent
7a5c440102
commit
564f7ae7b4
@ -296,9 +296,11 @@ bench-extra-objs = json-lib.o
|
||||
extra-objs += $(bench-extra-objs)
|
||||
others-extras = $(bench-extra-objs)
|
||||
|
||||
binaries-bench := $(addprefix $(objpfx)bench-,$(bench))
|
||||
# NB: Use "=" instead of ":=" since sysdeps Makefiles may add more
|
||||
# benches.
|
||||
binaries-bench = $(addprefix $(objpfx)bench-,$(bench))
|
||||
extra-objs += $(addsuffix .o,$(addprefix bench-,$(bench)))
|
||||
binaries-benchset := $(addprefix $(objpfx)bench-,$(benchset))
|
||||
binaries-benchset = $(addprefix $(objpfx)bench-,$(benchset))
|
||||
extra-objs += $(addsuffix .o,$(addprefix bench-,$(benchset)))
|
||||
binaries-bench-malloc := $(addprefix $(objpfx)bench-,$(bench-malloc))
|
||||
extra-objs += $(addsuffix .o,$(addprefix bench-,$(bench-malloc)))
|
||||
|
Loading…
Reference in New Issue
Block a user