Skip to content

Commit f20471c

Browse files
committed
make: versions.txt - add missing quotes and log error
Signed-off-by: Øyvind Harboe <[email protected]>
1 parent e494953 commit f20471c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flow/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,9 @@ $(foreach block,$(BLOCKS),$(eval $(WORK_HOME)/results/$(PLATFORM)/$(DESIGN_NICKN
184184
.PHONY: versions.txt
185185
versions.txt:
186186
mkdir -p $(OBJECTS_DIR)
187-
@echo yosys $(shell $(YOSYS_EXE) -V) > $(OBJECTS_DIR)/$@
188-
@echo openroad $(shell $(OPENROAD_EXE) -version) >> $(OBJECTS_DIR)/$@
189-
@echo klayout $(shell $(KLAYOUT_CMD) -zz -v) >> $(OBJECTS_DIR)/$@
187+
@echo "yosys $(shell $(YOSYS_EXE) -V 2>&1)" > $(OBJECTS_DIR)/$@
188+
@echo "openroad $(shell $(OPENROAD_EXE) -version 2>&1)" >> $(OBJECTS_DIR)/$@
189+
@echo "klayout $(shell $(KLAYOUT_CMD) -zz -v 2>&1)" >> $(OBJECTS_DIR)/$@
190190

191191
# Pre-process libraries
192192
# ==============================================================================

0 commit comments

Comments
 (0)