build-package: mv termux_step_host_build to scripts/build/

This commit is contained in:
Henrik Grimler 2019-02-26 21:28:04 +01:00 committed by Leonid Pliushch
parent d159e59699
commit f36687b8e7
2 changed files with 5 additions and 4 deletions

View File

@ -750,10 +750,7 @@ source scripts/build/termux_step_handle_hostbuild.sh
# Perform a host build. Will be called in $TERMUX_PKG_HOSTBUILD_DIR.
# After termux_step_post_extract_package() and before termux_step_patch_package()
termux_step_host_build() {
"$TERMUX_PKG_SRCDIR/configure" ${TERMUX_PKG_EXTRA_HOSTBUILD_CONFIGURE_ARGS}
make -j "$TERMUX_MAKE_PROCESSES"
}
source scripts/build/termux_step_host_build.sh
# Setup a standalone Android NDK toolchain. Not to be overridden by packages.
termux_step_setup_toolchain() {

View File

@ -0,0 +1,4 @@
termux_step_host_build() {
"$TERMUX_PKG_SRCDIR/configure" ${TERMUX_PKG_EXTRA_HOSTBUILD_CONFIGURE_ARGS}
make -j "$TERMUX_MAKE_PROCESSES"
}