net-irc/znc-clientbuffer: fix unquoted variables

Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Thomas Bracht Laumann Jespersen
2022-06-08 22:11:54 +02:00
committed by Sam James
parent 0991dba212
commit 1ae1623149

View File

@@ -1,4 +1,4 @@
# Copyright 2020 Gentoo Authors
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -21,7 +21,7 @@ DOCS=( README.md )
_emake() {
emake \
-j1 \
PREFIX=${EPREFIX}/usr \
PREFIX="${EPREFIX}"/usr \
LIBDIR=/$(get_libdir) \
"$@"
}
@@ -31,7 +31,7 @@ src_compile() {
}
src_install() {
_emake DESTDIR=${ED} install
_emake DESTDIR="${ED}" install
einstalldocs
}