From a3aa865541f1eb57c5ab2399155c93a7ccd0cfba Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joakim=20Nohlg=C3=A5rd?= <joakim.nohlgard@eistec.se>
Date: Tue, 17 Jan 2017 14:43:02 +0100
Subject: [PATCH] doc: Only strip core, drivers, and sys include path prefixes

fixes tons of false warnings on cpu_conf.h headers in cpu

/tmp/RIOT/cpu/atmega1281/include/cpu_conf.h:12: warning: the name `/tmp/RIOT/cpu/atmega1281/include/cpu_conf.h' supplied as the second argument in the \file statement matches the following input files:
   /tmp/RIOT/cpu/atmega1281/include/cpu_conf.h
Please use a more specific name by including a (larger) part of the path!
---
 doc/doxygen/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/doxygen/Makefile b/doc/doxygen/Makefile
index 90188c15c5..d001fc0242 100644
--- a/doc/doxygen/Makefile
+++ b/doc/doxygen/Makefile
@@ -1,7 +1,7 @@
 RIOTBASE=$(shell git rev-parse --show-toplevel)
 # Generate list of quoted absolute include paths. Evaluated in riot.doxyfile.
 export STRIP_FROM_INC_PATH_LIST=$(shell \
-    git ls-tree -dr --full-tree --name-only HEAD |\
+    git ls-tree -dr --full-tree --name-only HEAD core drivers sys |\
     grep '/include$$' |\
     sed 's/.*/\"$(subst /,\/,${RIOTBASE})\/\0\"/')
 
-- 
GitLab