build-tags.sh is broken because of removed 'test' folder, this breaks
helper make targets like 'make cscope', 'make tags', etc...

Fixing it by removing 'test' from source directories list.

Fixes: a9de470cc7c0 ("test: move to app directory")

Signed-off-by: Ferruh Yigit <ferruh.yi...@intel.com>
---
Cc: bruce.richard...@intel.com
---
 devtools/build-tags.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/devtools/build-tags.sh b/devtools/build-tags.sh
index 78001f048..03ba1853b 100755
--- a/devtools/build-tags.sh
+++ b/devtools/build-tags.sh
@@ -38,7 +38,7 @@ shift $(($OPTIND - 1))
 #ignore version control files
 ignore="( -name .svn -o -name CVS -o -name .hg -o -name .git ) -prune -o"
 
-source_dirs="test app buildtools drivers examples lib"
+source_dirs="app buildtools drivers examples lib"
 
 skip_bsd="( -name bsdapp ) -prune -o"
 skip_linux="( -name linuxapp ) -prune -o"
-- 
2.20.1

Reply via email to