From f17786a9c34730b24ed16524761ee25a8f6f83c6 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Sat, 19 Dec 2020 00:17:48 -0800 Subject: [PATCH] Another makefile laziness optimization --- etc/makefiles/sketch.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/makefiles/sketch.mk b/etc/makefiles/sketch.mk index 35afbd38..ecd4ef99 100644 --- a/etc/makefiles/sketch.mk +++ b/etc/makefiles/sketch.mk @@ -117,7 +117,7 @@ ifeq ($(flashing_instructions),) flashing_instructions := "If your keyboard needs you to do something to put it in flashing mode, do that now." endif -unescaped_flashing_instructions := $(shell printf $(flashing_instructions) ) +unescaped_flashing_instructions = $(shell printf $(flashing_instructions) ) DEFAULT_GOAL: compile