doc: gendoxylist: fix syntax error for first file

Was hidden earlier by missing new line.
This commit is contained in:
Karl Palsson 2018-02-07 22:40:24 +00:00
parent efa49e6431
commit d68604dedd

View File

@ -12,7 +12,7 @@ PATH_DELTA=$(realpath --relative-to=${ODIR} ${DDIR})
printf "# This file is autogenerated by scripts/gendoxylist\n" > ${ODIR}/${ONAME} printf "# This file is autogenerated by scripts/gendoxylist\n" > ${ODIR}/${ONAME}
printf "# All headers for platform, not always caught by .d file tracking\n" >> ${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 for FN in $(find ../include/libopencm3/${IPATH} -name '*.h'); do
printf "INPUT += ../%s\n" "$FN" >> ${ODIR}/${ONAME} printf "INPUT += ../%s\n" "$FN" >> ${ODIR}/${ONAME}
done done