commit: 1ae162314922d77e47b167e349d2e47aa5f1a671
Author: Thomas Bracht Laumann Jespersen <t <AT> laumann <DOT> xyz>
AuthorDate: Wed Jun 8 20:11:54 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 16 16:30:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ae16231
net-irc/znc-clientbuffer: fix unquoted variables
Signed-off-by: Thomas Bracht Laumann Jespersen <t <AT> laumann.xyz>
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-irc/znc-clientbuffer/znc-clientbuffer-1.0.48.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/net-irc/znc-clientbuffer/znc-clientbuffer-1.0.48.ebuild
b/net-irc/znc-clientbuffer/znc-clientbuffer-1.0.48.ebuild
index 7ad332d77a02..2491cc61317b 100644
--- a/net-irc/znc-clientbuffer/znc-clientbuffer-1.0.48.ebuild
+++ b/net-irc/znc-clientbuffer/znc-clientbuffer-1.0.48.ebuild
@@ -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
}