diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-06-14 18:22:03 -0400 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-06-14 18:22:03 -0400 |
commit | 5ba5415ed3474759331c1d065cfe7051e0a64fd5 (patch) | |
tree | 5e2f0344dfcb0f8976f0a8b3b3355fe1d6f19d6b /doc | |
parent | 6da05577407545bf6511054d8a822cebc38824b9 (diff) | |
download | buildstream-5ba5415ed3474759331c1d065cfe7051e0a64fd5.tar.gz |
doc/Makefile: Fixed loop over session files
This list needs to not be quoted.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile | 2 |
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 |