mirror of https://github.com/odrling/Aegisub
Ensure the system 'convert' utility is actually from ImageMagick.
Originally committed to SVN as r3037.
This commit is contained in:
parent
08d507e40c
commit
357b527249
|
@ -188,7 +188,7 @@ if test -z "$BIN_CONVERT"; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
$ECHO_N "checking for ImageMagick 'convert' utility ... "
|
$ECHO_N "checking for ImageMagick 'convert' utility ... "
|
||||||
if test -x "$BIN_CONVERT"; then
|
if test -x "$BIN_CONVERT" && $BIN_CONVERT --version |grep -c ImageMagick > /dev/null; then
|
||||||
echo $BIN_CONVERT
|
echo $BIN_CONVERT
|
||||||
else
|
else
|
||||||
echo "not found"
|
echo "not found"
|
||||||
|
|
Loading…
Reference in New Issue