mirror of
https://github.com/matrix-construct/construct
synced 2024-11-10 12:01:15 +01:00
configure.ac: Fix arguments to tools/buildjs.
This commit is contained in:
parent
044259f841
commit
8895bb57c3
1 changed files with 8 additions and 2 deletions
10
configure.ac
10
configure.ac
|
@ -964,9 +964,15 @@ AC_HELP_STRING([--with-included-js[[[=shared]]]], [Use the JS engine (SpiderMonk
|
||||||
fi
|
fi
|
||||||
|
|
||||||
js_branch="esr45"
|
js_branch="esr45"
|
||||||
js_options="--enable-optimize"
|
|
||||||
js_jobs="4"
|
js_jobs="4"
|
||||||
bash tools/buildjs.sh $js_branch $js_options $js_jobs
|
|
||||||
|
if [[ $DEBUG ]]; then
|
||||||
|
js_options="--disable-optimize --enable-debug"
|
||||||
|
else
|
||||||
|
js_options="--enable-optimize"
|
||||||
|
fi
|
||||||
|
|
||||||
|
bash tools/buildjs.sh "$js_branch" "$js_options" "$js_jobs"
|
||||||
],[
|
],[
|
||||||
AC_MSG_RESULT([no])
|
AC_MSG_RESULT([no])
|
||||||
with_included_js="no"
|
with_included_js="no"
|
||||||
|
|
Loading…
Reference in a new issue