From 950aee07491f44bf0c61dcbf8d22f69530eb3ed4 Mon Sep 17 00:00:00 2001 From: Colin Schmidt Date: Mon, 26 Aug 2019 12:36:50 -0700 Subject: [PATCH] Change spaces to underscores in sim_out_name This fixes #209 --- variables.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.mk b/variables.mk index ca0f8fc9..41d5ef81 100644 --- a/variables.mk +++ b/variables.mk @@ -143,7 +143,7 @@ output_dir=$(sim_dir)/output/$(long_name) BINARY ?= SIM_FLAGS ?= VERBOSE_FLAGS ?= +verbose -sim_out_name = $(notdir $(basename $(BINARY))).$(long_name) +sim_out_name = $(subst $() $(),_,$(notdir $(basename $(BINARY))).$(long_name)) ######################################################################################### # build output directory for compilation