diff options
| author | Théo Zimmermann | 2016-10-19 12:07:38 +0200 |
|---|---|---|
| committer | Théo Zimmermann | 2016-10-19 12:07:38 +0200 |
| commit | e6f6cff7b88a70fe694507efe12885a776ab6730 (patch) | |
| tree | 488b274e5f28dcc86401102f15abab1aded9668e | |
| parent | 317ae3b327d201530730ed2cce5f44e8763814d4 (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.doc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.doc b/Makefile.doc index b7251ce579..cea6f9b1a5 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 $< $@ |
