diff options
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/install-tl | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Master/install-tl b/Master/install-tl index 615fd899a0a..591749733ed 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -838,12 +838,14 @@ sub do_postinst_stuff { open(DVIPDFMCONFIGINST, ">$TEXMFSYSVAR/dvipdfm/dvipdfmx.cfg") or die("Cannot open $TEXMFSYSVAR/dvipdfm/dvipdfmx.cfg"); while (<DVIPDFMCONFIGDIST>) { - # we still don't know what to do with dvipdfmx.cfg invocation - # if (m/^D /) { - # print DVIPDFMCONFIGINST 'D "epstopdf --outfile=%o --nocompress %i"', "\n"; - #} else { + we still don't know what to do with dvipdfmx.cfg invocation + if (m/^D /) { + print DVIPDFMCONFIGINST "%$_"; + print DVIPDFMCONFIGINST "\n%% GhostScript (TeX Live (Unix and Win32)):\n"; + print DVIPDFMCONFIGINST 'D "rungs -q -dNOPAUSE -dBATCH -sPAPERSIZE=a0 -sD[truncated]', "\n\n"; + } else { print DVIPDFMCONFIGINST; - #} + } } close(DVIPDFMCONFIGDIST); close(DVIPDFMCONFIGINST); |