doc: gendoxylist: fix missing first file

Missing a \n in the descriptive print.
This commit is contained in:
Karl Palsson 2018-02-07 22:36:36 +00:00
parent 0a6b5653b5
commit efa49e6431
1 changed files with 1 additions and 1 deletions

View File

@ -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