mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-12 16:50:39 +00:00
revert bugfix for bug 2418 to have a well working LyX 1.4.4 on all systems.
I leave it in trunk for now until we have a real fix or it is decided to remove it there also. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@17030 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
1ce02fcadb
commit
1d3e3073e3
@ -18,7 +18,7 @@
|
||||
|
||||
# converts an image from $1 to $2 format
|
||||
import os, sys
|
||||
if os.system(r'convert -define pdf:use-cropbox=true -depth 8 "%s" "%s"' % (sys.argv[1], sys.argv[2])) != 0:
|
||||
if os.system(r'convert -depth 8 "%s" "%s"' % (sys.argv[1], sys.argv[2])) != 0:
|
||||
print >> sys.stderr, sys.argv[0], 'ERROR'
|
||||
print >> sys.stderr, 'Execution of "convert" failed.'
|
||||
sys.exit(1)
|
||||
|
Loading…
Reference in New Issue
Block a user