Skip to content

Commit 97b4db7

Browse files
committed
docs: user: Fix YOSYS_CMD
Fix command not found when trying to export the yosys binary path and remove "shell" from the sub-command. $ export YOSYS_CMD=$(shell command -v yosys) Command 'shell' not found, did you mean: ... Signed-off-by: Daniel Schultz <[email protected]>
1 parent d723079 commit 97b4db7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/user/BuildWithPrebuilt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Export path variables accordingly.
4949
```
5050
# these variables are used in flow/Makefile. Do make sure the yosys path is sourced.
5151
export OPENROAD_EXE=$(command -v openroad)
52-
export YOSYS_CMD=$(shell command -v yosys)
52+
export YOSYS_CMD=$(command -v yosys)
5353
5454
# only if KLayout is built from source
5555
export LD_LIBRARY_PATH="<klayout_location>/bin:$PATH"

0 commit comments

Comments
 (0)