diff options
| author | levlam <levlam@telegram.org> | 2020-11-14 22:12:48 +0300 |
|---|---|---|
| committer | levlam <levlam@telegram.org> | 2020-11-14 22:12:48 +0300 |
| commit | 94fc06c9fcd6093505cd4a237dd5618f2fea562f (patch) | |
| tree | 11a77955b1d034811b64ae280aebc2fb1676472d /build.html | |
| parent | 583a8f41d61fd232c0584769d320a5d9880a9a41 (diff) | |
Install php-cli instead of php on Debian/Ubuntu in build instructions as suggested by @Cavallium.
Diffstat (limited to 'build.html')
| -rw-r--r-- | build.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build.html b/build.html index ae6629c72..3027240a3 100644 --- a/build.html +++ b/build.html @@ -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'; |
