Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/gendoxylist')
-rwxr-xr-xscripts/gendoxylist2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gendoxylist b/scripts/gendoxylist
index 6ae5804b..108e2a90 100755
--- a/scripts/gendoxylist
+++ b/scripts/gendoxylist
@@ -13,7 +13,7 @@ PATH_DELTA=$(realpath --relative-to=${ODIR} ${DDIR})
printf "# This file is autogenerated by scripts/gendoxylist\n" > ${ODIR}/${ONAME}
printf "# All headers for core/platform, not always caught by .d file tracking\n" >> ${ODIR}/${ONAME}
UNTRACKED_DIRS="../include/libopencm3/cm3 ../include/libopencm3/${IPATH}"
-for FN in $(find ${UNTRACKED_DIRS} -name '*.h'); do
+for FN in $(find ${UNTRACKED_DIRS} -name '*.h' | sort); do
printf "INPUT += ../%s\n" "$FN" >> ${ODIR}/${ONAME}
done