From 8e9c15c10d7e51765c841a0470ef2107d6c9a88b Mon Sep 17 00:00:00 2001 From: Ben Keller Date: Thu, 3 Sep 2015 15:36:11 -0700 Subject: [PATCH] If you don't have spike-disasm in your path, your path is dumped to stdout by this line every time you do anything in the entire repo. --- Makefrag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefrag b/Makefrag index a82b38a1..0dcb4e11 100644 --- a/Makefrag +++ b/Makefrag @@ -18,7 +18,7 @@ default_submodules = . junctions uncore hardfloat rocket zscale chisel_srcs = $(addprefix $(base_dir)/,$(addsuffix /$(src_path)/*.scala,$(default_submodules))) disasm := 2> -which_disasm := $(shell which spike-dasm) +which_disasm := $(shell which spike-dasm 2> /dev/null) ifneq ($(which_disasm),) disasm := 3>&1 1>&2 2>&3 | $(which_disasm) $(DISASM_EXTENSION) > endif