imagemagick-x: fix build.sh
Fix following error when parsing build.sh files: imagemagick-x/build.sh: line 26: [: -lt: unary operator expected
This commit is contained in:
parent
13f395a6e0
commit
e945485102
@ -23,7 +23,7 @@ TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|||||||
--disable-openmp
|
--disable-openmp
|
||||||
ac_cv_func_ftime=no"
|
ac_cv_func_ftime=no"
|
||||||
|
|
||||||
if [ $TERMUX_PKG_API_LEVEL -lt 24 ]; then
|
if [ ${TERMUX_PKG_API_LEVEL:-24} -lt 24 ]; then
|
||||||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_header_complex_h=no"
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_header_complex_h=no"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user