Skip to content

Commit cc627d7

Browse files
authored
Replace := with +=
1 parent a06c9ca commit cc627d7

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
@@ -218,10 +218,10 @@ HASHSUM_PROGS := \
218218
$(info Detected OS = $(OS))
219219

220220
ifneq ($(OS),Windows_NT)
221-
PROGS := $(PROGS) $(UNIX_PROGS)
221+
PROGS += $(UNIX_PROGS)
222222
endif
223223
ifeq ($(SELINUX_ENABLED),1)
224-
PROGS := $(PROGS) $(SELINUX_PROGS)
224+
PROGS += $(SELINUX_PROGS)
225225
endif
226226

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

0 commit comments

Comments
 (0)