From 32a43b71e616cddac9640cc3cda273c343efb183 Mon Sep 17 00:00:00 2001 From: Chris Dailey Date: Wed, 15 Jul 2020 01:45:49 -0400 Subject: [PATCH] Change delimiter in git submodule cut to double quote The single quote causes issues with the string parsing on shells that expect double quotes. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 627e3ae..b5d5700 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ MBR_HEX = lib/softdevice/mbr/hex/mbr_nrf52_2.4.1_mbr.hex LD_FILE = linker/$(MCU_SUB_VARIANT).ld GIT_VERSION = $(shell git describe --dirty --always --tags) -GIT_SUBMODULE_VERSIONS = $(shell git submodule status | cut -d' ' -f3,4 | paste -s -d" " -) +GIT_SUBMODULE_VERSIONS = $(shell git submodule status | cut -d" " -f3,4 | paste -s -d" " -) # compiled file name OUT_FILE = $(BOARD)_bootloader-$(GIT_VERSION)