Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 479484 - dev-libs/hiredis violates multilib-strict
Summary: dev-libs/hiredis violates multilib-strict
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Library (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Jesus Rivero (RETIRED)
URL:
Whiteboard:
Keywords: PATCH
Depends on:
Blocks:
 
Reported: 2013-08-02 09:23 UTC by Emery Hemingway
Modified: 2013-08-07 02:07 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Emery Hemingway 2013-08-02 09:23:22 UTC
--- /usr/portage/dev-libs/hiredis/hiredis-0.11.0.ebuild	2013-01-31 18:06:49.000000000 -0600
+++ hiredis-0.11.0.ebuild	2013-08-02 04:20:26.602140275 -0500
@@ -4,7 +4,7 @@
 
 EAPI=4
 
-inherit eutils
+inherit eutils multilib
 
 DESCRIPTION="Minimalistic C client library for the Redis database"
 HOMEPAGE="http://github.com/redis/hiredis"
@@ -38,6 +38,6 @@
 }
 
 src_install() {
-	emake PREFIX="${ED}/usr" install
+	emake PREFIX="${ED}/usr" LIBRARY_PATH="$(get_libdir)" install
 	dodoc ${DOCS}
 }
Comment 1 Jesus Rivero (RETIRED) gentoo-dev 2013-08-07 02:07:18 UTC
+  07 Aug 2013; <neurogeek@gentoo.org> hiredis-0.11.0.ebuild:
+  Added multilib support. Closes bug #479484. Thanks to Emery Hemingway for the
+  heads up and patch