diff options
| author | Florent Revest <revest@chromium.org> | 2025-03-18 11:58:58 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2025-03-18 18:00:30 +0000 |
| commit | 8d0a2921fa3fb69c4895e35cddb3310066e97d52 (patch) | |
| tree | a5ac80a4cc089f4769c789c2682cd8a91affa539 /tools/syz-declextract/README.md | |
| parent | a08a4bb9ae3be698d2eb98ea66bb25ebb1fe63e0 (diff) | |
tools/syz-declextract: fix README run instruction
When using go run, I had to specify the path of syz-declextract or I'd
get the following error: package tools/syz-declextract is not in std
(/usr/lib/google-golang/src/tools/syz-declextract)
Diffstat (limited to 'tools/syz-declextract/README.md')
| -rw-r--r-- | tools/syz-declextract/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/syz-declextract/README.md b/tools/syz-declextract/README.md index ae48768e5..ccf350c89 100644 --- a/tools/syz-declextract/README.md +++ b/tools/syz-declextract/README.md @@ -42,7 +42,7 @@ ninja syz-declextract ## Running on the whole kernel ``` -go run tools/syz-declextract -binary=$LLVM_BUILD/bin/syz-declextract -config=manager.cfg +go run ./tools/syz-declextract -binary=$LLVM_BUILD/bin/syz-declextract -config=manager.cfg syz-env make extract SOURCEDIR=$KERNEL ``` |
