From d68604deddf524351a11731a7c720ff9e94ff800 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Wed, 7 Feb 2018 22:40:24 +0000 Subject: [PATCH] doc: gendoxylist: fix syntax error for first file Was hidden earlier by missing new line. --- scripts/gendoxylist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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