Skip to content

Commit 0d13cb4

Browse files
authored
Replace mkdir := assignment with = assignment
1 parent 301e4ac commit 0d13cb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ NRFJPROG = nrfjprog
4949

5050
# Set make directory command, Windows tries to create a directory named "-p" if that flag is there.
5151
ifneq ($(OS), Windows_NT)
52-
MK := mkdir -p
52+
MK = mkdir -p
5353
else
54-
MK := mkdir
54+
MK = mkdir
5555
endif
5656

5757
RM := rm -rf

0 commit comments

Comments
 (0)