Skip to content

Commit b335af2

Browse files
committed
use parens
1 parent 12cf196 commit b335af2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ NOTES= $(TEX_FILES) $(NOTE_TEX)
4444
all: slides notes spellcheck
4545

4646
slides: $(SLIDES)
47-
@for i in ${SLIDES}; do \
47+
@for i in $(SLIDES); do \
4848
new=`echo $$i | sed -e 's/.tex/.m4.tex/g'`; \
4949
$(M4) -D NOSPELLCHECK $$i > $$new; \
5050
done
5151
$(LATEX) $(SLIDE_TEX:tex=m4.tex)
5252
mv $(SLIDE_TEX:tex=m4.pdf) $(SLIDE_PDF)
5353

5454
notes: $(NOTES)
55-
@for i in ${NOTES}; do \
55+
@for i in $(NOTES); do \
5656
new=`echo $$i | sed -e 's/.tex/.m4.tex/g'`; \
5757
$(M4) -D NOSPELLCHECK $$i > $$new; \
5858
done

0 commit comments

Comments
 (0)