From efa49e64319284f8c250baa5dc49d83e20ebc366 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Wed, 7 Feb 2018 22:36:36 +0000 Subject: [PATCH] doc: gendoxylist: fix missing first file Missing a \n in the descriptive print. --- scripts/gendoxylist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gendoxylist b/scripts/gendoxylist index 361feb2f..9ef4c9c0 100755 --- a/scripts/gendoxylist +++ b/scripts/gendoxylist @@ -11,7 +11,7 @@ IPATH=$(echo ${DDIR} | sed -e 's#../lib/##') PATH_DELTA=$(realpath --relative-to=${ODIR} ${DDIR}) printf "# This file is autogenerated by scripts/gendoxylist\n" > ${ODIR}/${ONAME} -printf "# All headers for platform, not always caught by .d file tracking" >> ${ODIR}/${ONAME} +printf "# All headers for platform, not always caught by .d file tracking\n" >> ${ODIR}/${ONAME} for FN in FN=$(find ../include/libopencm3/${IPATH} -name '*.h'); do printf "INPUT += ../%s\n" "$FN" >> ${ODIR}/${ONAME} done