Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/swoole/
Date: Sun, 11 Aug 2019 11:20:48
Message-Id: 1565522373.96850fe35653b5015108cbc0cd1981473d849df2.soap@gentoo
1 commit: 96850fe35653b5015108cbc0cd1981473d849df2
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 11 11:19:33 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 11 11:19:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96850fe3
7
8 dev-php/swoole: [QA] Fix missing trailing slash
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-php/swoole/swoole-4.2.13.ebuild | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/dev-php/swoole/swoole-4.2.13.ebuild b/dev-php/swoole/swoole-4.2.13.ebuild
17 index 3d197c66427..04aa2e40c37 100644
18 --- a/dev-php/swoole/swoole-4.2.13.ebuild
19 +++ b/dev-php/swoole/swoole-4.2.13.ebuild
20 @@ -44,7 +44,7 @@ IUSE="debug http2 libressl mysql sockets ssl"
21
22 src_configure() {
23 # PostgreSQL disabled due to Gentoo's slot system
24 - # JEMalloc not included as it refuses to find a ${EROOT}usr/includes/jemalloc subdirectory
25 + # JEMalloc not included as it refuses to find a ${EROOT}/usr/includes/jemalloc subdirectory
26 local PHP_EXT_ECONF_ARGS=(
27 --enable-swoole
28 --disable-coroutine-postgresql
29 @@ -52,7 +52,7 @@ src_configure() {
30 $(use_enable http2)
31 $(use_enable mysql mysqlnd)
32 $(use_enable ssl openssl)
33 - $(use_with ssl openssl-dir "${EROOT%/}/usr")
34 + $(use_with ssl openssl-dir "${EROOT}/usr")
35 $(use_enable sockets)
36 )