diff options
author | Scott Stoddard <deltacow@gentoo.org> | 2006-04-05 21:49:44 +0000 |
---|---|---|
committer | Scott Stoddard <deltacow@gentoo.org> | 2006-04-05 21:49:44 +0000 |
commit | 090c6c4a01307b40d1836ea4e6d969cca92eef8e (patch) | |
tree | a673d2902e2c7a809ee4caa6041e420124c54088 /sys-power/cpufrequtils/cpufrequtils-001.ebuild | |
parent | New rev for SA 3.1.1 (diff) | |
download | gentoo-2-090c6c4a01307b40d1836ea4e6d969cca92eef8e.tar.gz gentoo-2-090c6c4a01307b40d1836ea4e6d969cca92eef8e.tar.bz2 gentoo-2-090c6c4a01307b40d1836ea4e6d969cca92eef8e.zip |
multilib fix (replace hardcoded /usr/lib in Makefile)
(Portage version: 2.1_pre7-r4)
Diffstat (limited to 'sys-power/cpufrequtils/cpufrequtils-001.ebuild')
-rw-r--r-- | sys-power/cpufrequtils/cpufrequtils-001.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys-power/cpufrequtils/cpufrequtils-001.ebuild b/sys-power/cpufrequtils/cpufrequtils-001.ebuild index efb5bd57ab6f..36834275376a 100644 --- a/sys-power/cpufrequtils/cpufrequtils-001.ebuild +++ b/sys-power/cpufrequtils/cpufrequtils-001.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/cpufrequtils/cpufrequtils-001.ebuild,v 1.1 2006/03/26 21:36:18 brix Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-power/cpufrequtils/cpufrequtils-001.ebuild,v 1.2 2006/04/05 21:49:44 deltacow Exp $ -inherit toolchain-funcs +inherit toolchain-funcs multilib DESCRIPTION="Userspace utilities for the Linux kernel cpufreq subsystem" HOMEPAGE="http://www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html" @@ -25,6 +25,7 @@ src_compile() { sed -i \ -e "s:^\(CFLAGS \:=.*\):\1 ${CFLAGS}:" \ + -e "s:/usr/lib:/usr/$(get_libdir):" \ ${S}/Makefile emake -j1 V=true DEBUG=${debug} NLS=${nls} \ |