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:
Uwe Stöhr 2007-02-02 22:54:25 +00:00
parent 1ce02fcadb
commit 1d3e3073e3

View File

@ -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)