summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authoruvok2025-12-25 12:45:44 +0100
committeruvok2025-12-25 12:45:44 +0100
commitd2e48cb1ef257fba5f37c7d7af6dc67df544cb00 (patch)
treed59c2389d96de471ea6dea66d46fdcf97cd94a7b /Makefile
parent8162447f44247bcde09d163fc9ac31b00ac26a8b (diff)
yosys: Use less specialized regex for error
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fd6c050..da6d17e 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@ FLASH_OPTS ?=
# as yosys needs to have -o specified for this to work
# but I specify the command manually
# also, yosys inserts /tmp/ files which makes this useless.
-YOSYS_OPTS ?= -Q -q -l $(PROGRAM).yosys.log -e "multiple conflicting drivers"
+YOSYS_OPTS ?= -Q -q -l $(PROGRAM).yosys.log -e "conflict"
DEPS := $(wildcard *.dep)
# this is "bad", as it runs the deps target every time