diff --git a/scripts/gendoxylist b/scripts/gendoxylist index 9ef4c9c0..988891d1 100755 --- a/scripts/gendoxylist +++ b/scripts/gendoxylist @@ -12,7 +12,7 @@ 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\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} done