Browse Source

doc/doxygen/dev/starpu_check_documented.py: also look in include/starpu_config.h.in

Nathalie Furmento 11 years ago
parent
commit
0394ba6185
1 changed files with 1 additions and 1 deletions
  1. 1 1
      doc/doxygen/dev/starpu_check_documented.py

+ 1 - 1
doc/doxygen/dev/starpu_check_documented.py

@@ -32,7 +32,7 @@ for function in functions:
         print "Function <" + bcolors.FAILURE + function[0] + bcolors.NORMAL + "> documented in <" + function[1] + "> does not exist in StarPU's API"
         print "Function <" + bcolors.FAILURE + function[0] + bcolors.NORMAL + "> documented in <" + function[1] + "> does not exist in StarPU's API"
 
 
 for datatype in datatypes:
 for datatype in datatypes:
-    x = os.system("fgrep -l \"" + datatype[0] + "\" ../../include/*.h ../../mpi/include/*.h ../../starpufft/*h ../../sc_hypervisor/include/*.h > /dev/null")
+    x = os.system("fgrep -l \"" + datatype[0] + "\" ../../include/*.h ../../include/starpu_config.h.in ../../mpi/include/*.h ../../starpufft/*h ../../sc_hypervisor/include/*.h > /dev/null")
     if x != 0:
     if x != 0:
         print "Datatype <" + bcolors.FAILURE + datatype[0] + bcolors.NORMAL + "> documented in <" + datatype[1] + "> does not exist in StarPU's API"
         print "Datatype <" + bcolors.FAILURE + datatype[0] + bcolors.NORMAL + "> documented in <" + datatype[1] + "> does not exist in StarPU's API"