Skip to content

Commit 4526136

Browse files
committed
Replace := with +=
1 parent ed4f808 commit 4526136

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

GNUmakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,10 @@ HASHSUM_PROGS := \
219219
$(info Detected OS = $(OS))
220220

221221
ifneq ($(OS),Windows_NT)
222-
PROGS := $(PROGS) $(UNIX_PROGS)
222+
PROGS += $(UNIX_PROGS)
223223
endif
224224
ifeq ($(SELINUX_ENABLED),1)
225-
PROGS := $(PROGS) $(SELINUX_PROGS)
225+
PROGS += $(SELINUX_PROGS)
226226
endif
227227

228228
UTILS ?= $(filter-out $(SKIP_UTILS),$(PROGS))

0 commit comments

Comments
 (0)