diff options
author | Thomas Bracht Laumann Jespersen <t@laumann.xyz> | 2022-06-08 21:45:43 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-16 17:30:32 +0100 |
commit | c9c31b330215b967efcc7e0aae8240eb9950194c (patch) | |
tree | c1f2d2492a6342b6d2d8e528a9aeed5a105a495e /dev-vcs | |
parent | dev-vcs/cvs: fix unquoted variable EPREFIX (diff) | |
download | gentoo-c9c31b330215b967efcc7e0aae8240eb9950194c.tar.gz gentoo-c9c31b330215b967efcc7e0aae8240eb9950194c.tar.bz2 gentoo-c9c31b330215b967efcc7e0aae8240eb9950194c.zip |
dev-vcs/subversion: 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 'dev-vcs')
-rw-r--r-- | dev-vcs/subversion/subversion-1.14.1.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-vcs/subversion/subversion-1.14.1.ebuild b/dev-vcs/subversion/subversion-1.14.1.ebuild index b05d9fd700e2..a7a8cdbc9104 100644 --- a/dev-vcs/subversion/subversion-1.14.1.ebuild +++ b/dev-vcs/subversion/subversion-1.14.1.ebuild @@ -90,7 +90,7 @@ want_apache pkg_setup() { if use berkdb ; then - local apu_bdb_version="$(${EPREFIX}/usr/bin/apu-1-config --includes \ + local apu_bdb_version="$("${EPREFIX}"/usr/bin/apu-1-config --includes \ | grep -Eoe '-I${EPREFIX}/usr/include/db[[:digit:]]\.[[:digit:]]' \ | sed 's:.*b::')" einfo |