summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntony Pavlov <antonynpavlov@gmail.com>2014-07-17 16:02:03 +0400
committerSascha Hauer <s.hauer@pengutronix.de>2014-07-22 22:07:29 +0200
commit2671c30c2520e65779da55b62d32fe4f8cdd12fc (patch)
treedc0ec5d435438ea73dbb1a3eb0fcc9d9b1bae6a2
parent5b76ec27d1f126304b650ca27dbb93831a19f3b5 (diff)
downloadbarebox-2671c30c2520e65779da55b62d32fe4f8cdd12fc.tar.gz
barebox-2671c30c2520e65779da55b62d32fe4f8cdd12fc.tar.xz
scripts/checkpatch.pl: don't search for Doxyfile when checking top_of_kernel_tree()
Doxygen documentation is removed in the commit commit 98360be0fefd58bf27df03c47d887dd676a31d73 Author: Sascha Hauer <s.hauer@pengutronix.de> Date: Tue Jun 17 10:27:03 2014 +0200 Documentation: remove doxygen documentation But checkpatch.pl still trying to check 'Doxyfile' presence. There is not such 'Doxyfile' and checkpatch.pl exits with 'Must be run from the top-level dir. of a kernel tree' message. Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rwxr-xr-xscripts/checkpatch.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index e80926fa0b..153af8dd82 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -329,7 +329,7 @@ sub top_of_kernel_tree {
my @tree_check = (
"arch", "commands", "common", "COPYING", "CREDITS", "defaultenv",
- "Documentation", "Doxyfile", "drivers", "fs", "include", "lib",
+ "Documentation", "drivers", "fs", "include", "lib",
"MAKEALL", "Makefile", "net", "README", "scripts", "TODO"
);