diff options
author | Thomas Bracht Laumann Jespersen <t@laumann.xyz> | 2022-06-08 09:43:33 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-16 17:30:20 +0100 |
commit | 51df83bee93ad841d1d72074666c3d5315f1f109 (patch) | |
tree | aa31c4885e691ccbdba95463093c514e5c51df5f /app-crypt | |
parent | app-crypt/libsecret: fix unquoted variable BROOT (diff) | |
download | gentoo-51df83bee93ad841d1d72074666c3d5315f1f109.tar.gz gentoo-51df83bee93ad841d1d72074666c3d5315f1f109.tar.bz2 gentoo-51df83bee93ad841d1d72074666c3d5315f1f109.zip |
app-crypt/p11-kit: fix unquoted variable EPREFIX
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/p11-kit/p11-kit-0.23.22.ebuild | 4 | ||||
-rw-r--r-- | app-crypt/p11-kit/p11-kit-0.24.1.ebuild | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/app-crypt/p11-kit/p11-kit-0.23.22.ebuild b/app-crypt/p11-kit/p11-kit-0.23.22.ebuild index d8fecbda2389..5285fb5d5e15 100644 --- a/app-crypt/p11-kit/p11-kit-0.23.22.ebuild +++ b/app-crypt/p11-kit/p11-kit-0.23.22.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -44,7 +44,7 @@ src_prepare() { multilib_src_configure() { ECONF_SOURCE="${S}" econf \ $(use_enable trust trust-module) \ - $(use_with trust trust-paths ${EPREFIX}/etc/ssl/certs/ca-certificates.crt) \ + $(use_with trust trust-paths "${EPREFIX}"/etc/ssl/certs/ca-certificates.crt) \ $(use_enable debug) \ $(use_with libffi) \ $(use_with asn1 libtasn1) \ diff --git a/app-crypt/p11-kit/p11-kit-0.24.1.ebuild b/app-crypt/p11-kit/p11-kit-0.24.1.ebuild index 94d342c7b28b..91ee0171c43a 100644 --- a/app-crypt/p11-kit/p11-kit-0.24.1.ebuild +++ b/app-crypt/p11-kit/p11-kit-0.24.1.ebuild @@ -44,7 +44,7 @@ src_prepare() { multilib_src_configure() { ECONF_SOURCE="${S}" econf \ $(use_enable trust trust-module) \ - $(use_with trust trust-paths ${EPREFIX}/etc/ssl/certs/ca-certificates.crt) \ + $(use_with trust trust-paths "${EPREFIX}"/etc/ssl/certs/ca-certificates.crt) \ $(use_enable debug) \ $(use_with libffi) \ $(use_with asn1 libtasn1) \ |