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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 430DD13835A for ; Thu, 24 Dec 2020 23:30:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43FFEE0AF8; Thu, 24 Dec 2020 23:30:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9E820E0AF7 for ; Thu, 24 Dec 2020 23:30:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DCE7F33FE74 for ; Thu, 24 Dec 2020 23:30:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4571A451 for ; Thu, 24 Dec 2020 23:30:03 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1608852592.2f94d3acdc091db41c1c741f854e0c66bd2642b5.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/hexchat/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/hexchat/hexchat-2.14.3-r100.ebuild X-VCS-Directories: net-irc/hexchat/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 2f94d3acdc091db41c1c741f854e0c66bd2642b5 X-VCS-Branch: master Date: Thu, 24 Dec 2020 23:30:03 +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: 2f51c5c1-0acc-4666-ad7a-68207fd0d291 X-Archives-Hash: 6760d61be6f320b506f798ca6823779f commit: 2f94d3acdc091db41c1c741f854e0c66bd2642b5 Author: Marek Szuba gentoo org> AuthorDate: Thu Dec 24 23:28:07 2020 +0000 Commit: Marek Szuba gentoo org> CommitDate: Thu Dec 24 23:29:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f94d3ac net-irc/hexchat-2.14.3-r100: fix USE=-lua configure error Quotation marks are important, kids. Closes: https://bugs.gentoo.org/761520 Signed-off-by: Marek Szuba gentoo.org> net-irc/hexchat/hexchat-2.14.3-r100.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-irc/hexchat/hexchat-2.14.3-r100.ebuild b/net-irc/hexchat/hexchat-2.14.3-r100.ebuild index 850dd84f2ac..77c0bc72368 100644 --- a/net-irc/hexchat/hexchat-2.14.3-r100.ebuild +++ b/net-irc/hexchat/hexchat-2.14.3-r100.ebuild @@ -85,7 +85,7 @@ src_configure() { -Ddbus-service-use-appid=false -Dwith-checksum="$(usex plugin-checksum true false)" -Dwith-fishlim="$(usex plugin-fishlim true false)" - -Dwith-lua="$(usex lua ${ELUA} false)" + -Dwith-lua="$(usex lua "${ELUA}" false)" -Dwith-perl="$(usex perl "${EPREFIX}"/usr/bin/perl false)" -Dwith-python="$(usex python "${EPYTHON/.*}" false)" -Dwith-sysinfo="$(usex plugin-sysinfo true false)"