From d96ef37df78eac5c636866d8f226991a5d96e6bb Mon Sep 17 00:00:00 2001 From: Doug Anderson Date: Mon, 26 Nov 2012 15:23:23 +0000 Subject: [PATCH] patman: Look for checkpatch in the scripts directory The Linux kernel stores checkpatch.pl in the scripts directory. Add that to the search path to make things more automatic for kernel development. Signed-off-by: Doug Anderson Acked-by: Simon Glass --- tools/patman/checkpatch.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/patman/checkpatch.py b/tools/patman/checkpatch.py index d831087d88..f72f8ee261 100644 --- a/tools/patman/checkpatch.py +++ b/tools/patman/checkpatch.py @@ -26,10 +26,12 @@ import re import terminal def FindCheckPatch(): + top_level = gitutil.GetTopLevel() try_list = [ os.getcwd(), os.path.join(os.getcwd(), '..', '..'), - os.path.join(gitutil.GetTopLevel(), 'tools'), + os.path.join(top_level, 'tools'), + os.path.join(top_level, 'scripts'), '%s/bin' % os.getenv('HOME'), ] # Look in current dir -- 2.39.2