1 |
commit: e12555e5e81966a3e8113735c4c6927b7b3eb81f |
2 |
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> |
3 |
AuthorDate: Mon Nov 28 02:48:06 2022 +0000 |
4 |
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> |
5 |
CommitDate: Mon Nov 28 02:49:35 2022 +0000 |
6 |
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e12555e5 |
7 |
|
8 |
sys-apps/coreutils: utilize use_with function for openssl |
9 |
|
10 |
--with-openssl is equivalent to --with-openssl=yes. |
11 |
--without-openssl is equivalent to --with-openssl=no. |
12 |
|
13 |
Bug: https://bugs.gentoo.org/883361 |
14 |
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org> |
15 |
|
16 |
sys-apps/coreutils/coreutils-9.1-r2.ebuild | 2 +- |
17 |
1 file changed, 1 insertion(+), 1 deletion(-) |
18 |
|
19 |
diff --git a/sys-apps/coreutils/coreutils-9.1-r2.ebuild b/sys-apps/coreutils/coreutils-9.1-r2.ebuild |
20 |
index b3dde9db2968..96a05ceb2241 100644 |
21 |
--- a/sys-apps/coreutils/coreutils-9.1-r2.ebuild |
22 |
+++ b/sys-apps/coreutils/coreutils-9.1-r2.ebuild |
23 |
@@ -134,7 +134,7 @@ src_configure() { |
24 |
$(use_enable multicall single-binary) |
25 |
$(use_enable xattr) |
26 |
$(use_with gmp libgmp) |
27 |
- --with-openssl=$(usex openssl yes no) |
28 |
+ $(use_with openssl) |
29 |
) |
30 |
|
31 |
if use gmp ; then |