From: Han-Wen Nienhuys Date: Mon, 29 Sep 2003 16:59:38 +0000 (+0000) Subject: resurrect 'eps' option. X-Git-Tag: release/2.1.0~15 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=6d6d1e9168caafb4133ffd236b3531c99e6b3574;p=lilypond.git resurrect 'eps' option. (TexiPaper.to_eps): use -Ppdf for EPS files. --- diff --git a/ChangeLog b/ChangeLog index 260b4df71a..a316c28720 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2003-09-29 Han-Wen Nienhuys * scripts/lilypond-book.py: resurrect 'eps' option. + (TexiPaper.to_eps): use -Ppdf for EPS files. * VERSION (PATCH_LEVEL): branch off 2.0, go to 2.1 in HEAD diff --git a/scripts/lilypond-book.py b/scripts/lilypond-book.py index 99a59dfeb8..44c08b5af9 100644 --- a/scripts/lilypond-book.py +++ b/scripts/lilypond-book.py @@ -1409,7 +1409,7 @@ def compile_all_files (chunks): cmd = '(( %s >&2 ) >&- )' % cmd ly.system (cmd) - ly.system ("dvips -E -o %s.eps %s" % (file, file)) + ly.system ("dvips -Ppdf -u+lilypond.map -E -o %s.eps %s" % (file, file)) map (to_eps, eps) map (ly.make_ps_images, map (lambda x: x + '.eps', png))