Skip to content

Commit

Permalink
Install php-cli instead of php on Debian/Ubuntu in build instructions…
Browse files Browse the repository at this point in the history
… as suggested by @cavallium.
  • Loading branch information
levlam committed Nov 14, 2020
1 parent 583a8f4 commit 94fc06c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.html
Original file line number Diff line number Diff line change
Expand Up @@ -645,9 +645,9 @@
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';
Expand Down

0 comments on commit 94fc06c

Please sign in to comment.