From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 346ED158091 for ; Thu, 16 Jun 2022 16:31:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D731AE09D1; Thu, 16 Jun 2022 16:31:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B5D91E09D1 for ; Thu, 16 Jun 2022 16:31:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D00D8341FCA for ; Thu, 16 Jun 2022 16:30:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6683520 for ; Thu, 16 Jun 2022 16:30:56 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1655397039.1ae162314922d77e47b167e349d2e47aa5f1a671.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/znc-clientbuffer/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/znc-clientbuffer/znc-clientbuffer-1.0.48.ebuild X-VCS-Directories: net-irc/znc-clientbuffer/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1ae162314922d77e47b167e349d2e47aa5f1a671 X-VCS-Branch: master Date: Thu, 16 Jun 2022 16:30:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5e6b03e0-3c3e-403a-83f9-76b9bb2aea35 X-Archives-Hash: d63d75f752cec98cd27dec4afde0941d commit: 1ae162314922d77e47b167e349d2e47aa5f1a671 Author: Thomas Bracht Laumann Jespersen laumann xyz> AuthorDate: Wed Jun 8 20:11:54 2022 +0000 Commit: Sam James gentoo 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 laumann.xyz> Signed-off-by: Sam James 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 }