diff options
author | Florian Schmaus <flow@gentoo.org> | 2022-04-18 10:40:10 +0200 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2022-04-18 11:19:41 +0200 |
commit | 8fb164911f73c39dbbc267ddf0cbb557b0f1970a (patch) | |
tree | 6da9947c8a3faa66520f6266f7775b2fd268b052 /app-emulation/xen-tools | |
parent | app-emulation/xen-tools: use https where possible (diff) | |
download | gentoo-8fb164911f73c39dbbc267ddf0cbb557b0f1970a.tar.gz gentoo-8fb164911f73c39dbbc267ddf0cbb557b0f1970a.tar.bz2 gentoo-8fb164911f73c39dbbc267ddf0cbb557b0f1970a.zip |
app-emulation/xen-tools: improve configure arguments
Use EPREFIX and properly quote the arguments.
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'app-emulation/xen-tools')
-rw-r--r-- | app-emulation/xen-tools/xen-tools-4.16.0-r3.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-emulation/xen-tools/xen-tools-4.16.0-r3.ebuild b/app-emulation/xen-tools/xen-tools-4.16.0-r3.ebuild index 719878f42f8b..750d5d2e6c4f 100644 --- a/app-emulation/xen-tools/xen-tools-4.16.0-r3.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.16.0-r3.ebuild @@ -420,9 +420,9 @@ src_prepare() { src_configure() { local myconf=( - --libdir=${PREFIX}/usr/$(get_libdir) - --libexecdir=${PREFIX}/usr/libexec - --localstatedir=${EPREFIX}/var + --libdir="${EPREFIX}/usr/$(get_libdir)" + --libexecdir="${EPREFIX}/usr/libexec" + --localstatedir="${EPREFIX}/var" --disable-golang --disable-werror --disable-xen |