Please fix bug ./build php_extensions on doExtensionsSetup()

mean

Verified User
Joined
Feb 14, 2007
Messages
103
Hello DA Dev Team.

./build php_extensions

./build: line 11495: php_htscanner2: command not found

from
[ "${PHP_HTSCANNER_OPT}" = "yes" ] && php_htscanner2
to
[ "${PHP_HTSCANNER_OPT}" = "yes" ] && doPHPHtscanner

--------------------------------------------------------------------------

doExtensionsSetup() {
ensureBuildPackages
install_rpms autoconf
install_debs autoconf
if [ "${CLOUDLINUX_OPT}" = "yes" ]; then
#Skip executing CL commands like "cagefsctl --force update" on every component update
EXEC_CL_COMMANDS_ONCE=true
fi

....
[ "${PHP_READLINE_OPT}" = "yes" ] && doPHPReadline
[ "${PHP_HTSCANNER_OPT}" = "yes" ] && php_htscanner2 <<<<<<<<<<<<<<<<<<<<<<<<<<<<

if [ "${CLOUDLINUX_OPT}" = "yes" ]; then
cagefsctl_update
fi
}


+-----------------------------------------------------------+
Directadmin Build Version: 2.0.0
+-----------------------------------------------------------+
PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
 
  • Like
Reactions: fln
Thanks for report, fix is released with latest DA 1.649.
 
Back
Top