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 B0B461382C5 for ; Wed, 14 Mar 2018 10:37:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84D43E086C; Wed, 14 Mar 2018 10:37:08 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 5E861E086C for ; Wed, 14 Mar 2018 10:37:07 +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 D1630335C72 for ; Wed, 14 Mar 2018 10:37:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 194231EF for ; Wed, 14 Mar 2018 10:37:05 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1521023748.f4eb1157a8d5bf92bebc78132ad329971549bea8.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/awesome/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/awesome/awesome-4.2.ebuild X-VCS-Directories: x11-wm/awesome/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f4eb1157a8d5bf92bebc78132ad329971549bea8 X-VCS-Branch: master Date: Wed, 14 Mar 2018 10:37:05 +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-Archives-Salt: 15ec6f81-57af-409b-8d4d-c36f1b09dbed X-Archives-Hash: 4f91be88925537793a8e31b37f7203da commit: f4eb1157a8d5bf92bebc78132ad329971549bea8 Author: David Truby gmail com> AuthorDate: Tue Jan 16 18:08:00 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Mar 14 10:35:48 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4eb1157 x11-wm/awesome: Fix luajit library path Closes: https://github.com/gentoo/gentoo/pull/6882 x11-wm/awesome/awesome-4.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-wm/awesome/awesome-4.2.ebuild b/x11-wm/awesome/awesome-4.2.ebuild index 170a680ce24..a579c0907b8 100644 --- a/x11-wm/awesome/awesome-4.2.ebuild +++ b/x11-wm/awesome/awesome-4.2.ebuild @@ -61,8 +61,8 @@ src_configure() { -DWITH_GENERATE_DOC=$(usex doc $(usex doc) n) ) if use luajit; then - mycmakeargs+=('-DLUA_INCLUDE_DIR=/usr/include/luajit-2.0') - mycmakeargs+=('-DLUA_LIBRARY=/usr/lib/libluajit-5.1.so') + mycmakeargs+=("-DLUA_INCLUDE_DIR=${EPREFIX}/usr/include/luajit-2.0") + mycmakeargs+=("-DLUA_LIBRARY=${EPREFIX}/usr/$(get_libdir)/libluajit-5.1.so") fi cmake-utils_src_configure }