From 0c8efb6fd2bbeae4d78eb4b60a0dad2f44a33a0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20=27Morty=27=20Str=C3=BCbe?= Date: Wed, 19 Nov 2014 15:07:53 +0100 Subject: [PATCH] Sort docdirs Sorting docdirs is requierd to get reproducable results --- doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile b/doc/Makefile index 939e0963e..ed00d677c 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -33,7 +33,7 @@ init: @echo "> Scanning files" # This target requires and graphviz and doxygen -doxygen.log: docdirs = $(foreach dir,$(basedirs),${shell find ../${dir} -type d -not -path "*/.*" -not -path "*/obj_*"}) +doxygen.log: docdirs = $(sort ,$(foreach dir,$(basedirs),${shell find ../${dir} -type d -not -path "*/.*" -not -path "*/obj_*"})) doxygen.log: docsrc = $(docdirs) $(foreach dir,$(docdirs),${shell find $(dir) -type f $(filetypes)}) $(manuals) doxygen.log: @doxygen Doxyfile