From 8d0a2921fa3fb69c4895e35cddb3310066e97d52 Mon Sep 17 00:00:00 2001 From: Florent Revest Date: Tue, 18 Mar 2025 11:58:58 +0100 Subject: 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) --- tools/syz-declextract/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') 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 ``` -- cgit mrf-deployment