Skip to content

Commit 21263f2

Browse files
committed
Adding PHP 8.3
1 parent 64a680a commit 21263f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/compile-extension-memcached

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function install_memcache() {
88
wget https://launchpad.net/libmemcached/1.0/1.0.18/+download/libmemcached-1.0.18.tar.gz
99
tar xzf libmemcached-1.0.18.tar.gz
1010
pushd libmemcached-1.0.18
11-
./configure --prefix=$INSTALL_DEST/$VERSION && make && make install
11+
./configure --prefix=$INSTALL_DEST/$VERSION && make && sudo make install
1212
popd
1313
popd
1414
}

bin/compile-extension-zmq

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ sudo apt-get install libzmq3-dev
1212

1313
if [[ $VERSION =~ ^7 || $VERSION =~ ^8 || $VERSION =~ ^master$ ]]; then
1414
phpize
15-
./configure && make && make install
15+
./configure && make && sudo make install
1616
else
1717
if [[ $(lsb_release -cs) == precise ]]; then
1818
sudo -E add-apt-repository -y ppa:travis-ci/zero-mq

0 commit comments

Comments
 (0)