diff options
author | Stefan Strogin <steils@gentoo.org> | 2020-02-26 02:35:59 +0200 |
---|---|---|
committer | Stefan Strogin <steils@gentoo.org> | 2020-02-26 02:37:50 +0200 |
commit | 4a7ea6d83d36125cbeae45801e4430f2f300a785 (patch) | |
tree | 9860fe294487e737ceb86ebc96c97ae15ccd4184 /net-libs/nodejs/nodejs-99999999.ebuild | |
parent | app-admin/helm: 3.1.1 bump (diff) | |
download | gentoo-4a7ea6d83d36125cbeae45801e4430f2f300a785.tar.gz gentoo-4a7ea6d83d36125cbeae45801e4430f2f300a785.tar.bz2 gentoo-4a7ea6d83d36125cbeae45801e4430f2f300a785.zip |
net-libs/nodejs: replace wrongly used subshell with 'if'
Closes: https://bugs.gentoo.org/710784
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Stefan Strogin <steils@gentoo.org>
Diffstat (limited to 'net-libs/nodejs/nodejs-99999999.ebuild')
-rw-r--r-- | net-libs/nodejs/nodejs-99999999.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net-libs/nodejs/nodejs-99999999.ebuild b/net-libs/nodejs/nodejs-99999999.ebuild index 71618f3c5232..7a8dc689fddd 100644 --- a/net-libs/nodejs/nodejs-99999999.ebuild +++ b/net-libs/nodejs/nodejs-99999999.ebuild @@ -102,7 +102,11 @@ src_configure() { use inspector || myconf+=( --without-inspector ) use npm || myconf+=( --without-npm ) use snapshot || myconf+=( --without-node-snapshot ) - use ssl && ( use system-ssl && myconf+=( --shared-openssl --openssl-use-def-ca-store ) ) || myconf+=( --without-ssl ) + if use ssl; then + use system-ssl && myconf+=( --shared-openssl --openssl-use-def-ca-store ) + else + myconf+=( --without-ssl ) + fi local myarch="" case ${ABI} in |