From 8d80db0319a9b50cb1d5ba50d94ae07404f32118 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Tue, 25 Jun 2019 12:36:29 +0000 Subject: [PATCH] gendoxylist: sort headers This makes the doxygen lists much more rationally ordered. --- scripts/gendoxylist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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