Install php-cli instead of php on Debian/Ubuntu in build instructions as suggested by @Cavallium.

This commit is contained in:
levlam 2020-11-14 22:12:48 +03:00
parent 583a8f41d6
commit 94fc06c9fc

View File

@ -645,9 +645,9 @@ function onOptionsChanged() {
commands.push(sudo + 'apt-get upgrade');
var packages = 'make git zlib1g-dev libssl-dev gperf';
if (linux_distro === 'Ubuntu 14' || linux_distro === 'Debian 8') {
packages += ' php5';
packages += ' php5-cli';
} else {
packages += ' php';
packages += ' php-cli';
}
if (linux_distro === 'Ubuntu 14') {
packages += ' cmake3';