diff options
author | Mike Gilbert <floppym@gentoo.org> | 2022-11-27 21:48:06 -0500 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2022-11-27 21:49:35 -0500 |
commit | e12555e5e81966a3e8113735c4c6927b7b3eb81f (patch) | |
tree | 4d84b1dbcc16eaf94bc092344e3841cce398d61f /sys-apps/coreutils | |
parent | sys-fs/lvm2: wire up app-machineid and systemd-journal options (diff) | |
download | gentoo-e12555e5e81966a3e8113735c4c6927b7b3eb81f.tar.gz gentoo-e12555e5e81966a3e8113735c4c6927b7b3eb81f.tar.bz2 gentoo-e12555e5e81966a3e8113735c4c6927b7b3eb81f.zip |
sys-apps/coreutils: utilize use_with function for openssl
--with-openssl is equivalent to --with-openssl=yes.
--without-openssl is equivalent to --with-openssl=no.
Bug: https://bugs.gentoo.org/883361
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'sys-apps/coreutils')
-rw-r--r-- | sys-apps/coreutils/coreutils-9.1-r2.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-apps/coreutils/coreutils-9.1-r2.ebuild b/sys-apps/coreutils/coreutils-9.1-r2.ebuild index b3dde9db2968..96a05ceb2241 100644 --- a/sys-apps/coreutils/coreutils-9.1-r2.ebuild +++ b/sys-apps/coreutils/coreutils-9.1-r2.ebuild @@ -134,7 +134,7 @@ src_configure() { $(use_enable multicall single-binary) $(use_enable xattr) $(use_with gmp libgmp) - --with-openssl=$(usex openssl yes no) + $(use_with openssl) ) if use gmp ; then |