From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8E581138E20 for ; Thu, 20 Feb 2014 21:18:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B9E1E0B9A; Thu, 20 Feb 2014 21:18:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ABABAE0B9A for ; Thu, 20 Feb 2014 21:18:53 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 45E3E33FC33 for ; Thu, 20 Feb 2014 21:18:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id F3F5518874 for ; Thu, 20 Feb 2014 21:18:50 +0000 (UTC) From: "Vadim A. Misbakh-Soloviov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vadim A. Misbakh-Soloviov" Message-ID: <1392931121.8f2f15bd70ec63674a03fbcf07263cc2dd7ee396.mva@gentoo> Subject: [gentoo-commits] proj/lua:master commit in: dev-lua/luadbi/ X-VCS-Repository: proj/lua X-VCS-Files: dev-lua/luadbi/luadbi-9999.ebuild X-VCS-Directories: dev-lua/luadbi/ X-VCS-Committer: mva X-VCS-Committer-Name: Vadim A. Misbakh-Soloviov X-VCS-Revision: 8f2f15bd70ec63674a03fbcf07263cc2dd7ee396 X-VCS-Branch: master Date: Thu, 20 Feb 2014 21:18:50 +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: 7188f944-6400-4cbc-94c2-79891d38c55e X-Archives-Hash: 9e0224f36036b161917f6fb3a4cfb518 commit: 8f2f15bd70ec63674a03fbcf07263cc2dd7ee396 Author: Vadim A. Misbakh-Soloviov mva name> AuthorDate: Thu Feb 20 21:18:41 2014 +0000 Commit: Vadim A. Misbakh-Soloviov mva name> CommitDate: Thu Feb 20 21:18:41 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lua.git;a=commit;h=8f2f15bd [dev-lua/luadbi] Fix mysql (mariadb?) build Signed-off-by: Vadim A. Misbakh-Soloviov mva.name> --- dev-lua/luadbi/luadbi-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-lua/luadbi/luadbi-9999.ebuild b/dev-lua/luadbi/luadbi-9999.ebuild index 1b3a9ef..96aeb52 100644 --- a/dev-lua/luadbi/luadbi-9999.ebuild +++ b/dev-lua/luadbi/luadbi-9999.ebuild @@ -52,7 +52,7 @@ src_compile() { LUA_CMOD="$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD ${lua})" \ LUA_INC="-I$($(tc-getPKG_CONFIG) --variable includedir ${lua})" \ PSQL_INC="-I/usr/include/postgresql/server" \ - MYQL_INC="-I/usr/include/mysql" \ + MYQL_INC="-I/usr/include/mysql -L/usr/$(get_multilib)/mysql" \ ${driver} \ || die "Compiling driver '${drivers// /}' failed" done