aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2016-10-19 12:07:38 +0200
committerGravatar Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2016-10-19 12:07:38 +0200
commite6f6cff7b88a70fe694507efe12885a776ab6730 (patch)
tree488b274e5f28dcc86401102f15abab1aded9668e
parent317ae3b327d201530730ed2cce5f44e8763814d4 (diff)
Change the order of arguments of fig2dev.
For some reason, with my version of transfig (which seems to be the latest), the order of arguments of the fig2dev command matters: -L png must come before -m 2. I suppose that this fix shouldn't break things for others.
-rw-r--r--Makefile.doc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.doc b/Makefile.doc
index b7251ce57..cea6f9b1a 100644
--- a/Makefile.doc
+++ b/Makefile.doc
@@ -61,7 +61,7 @@ endif
(cd `dirname $<`; $(DVIPS) -q -o `basename $@` `basename $<`)
%.png: %.fig
- $(FIG2DEV) -m 2 -L png $< $@
+ $(FIG2DEV) -L png -m 2 $< $@
%.pdf: %.fig
$(FIG2DEV) -L pdftex $< $@