summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-06-14 18:22:03 -0400
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-06-14 18:22:03 -0400
commit5ba5415ed3474759331c1d065cfe7051e0a64fd5 (patch)
tree5e2f0344dfcb0f8976f0a8b3b3355fe1d6f19d6b
parent6da05577407545bf6511054d8a822cebc38824b9 (diff)
downloadbuildstream-5ba5415ed3474759331c1d065cfe7051e0a64fd5.tar.gz
doc/Makefile: Fixed loop over session files
This list needs to not be quoted.
-rw-r--r--doc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile
index 1c1e538ab..19e5ab4a3 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -83,7 +83,7 @@ templates-clean:
# if you want to regenerate them.
#
sessions:
- for file in "$(wildcard sessions/*.run)"; do \
+ for file in $(wildcard sessions/*.run); do \
$(BST2HTML) --description $$file; \
done