diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-02-21 01:44:07 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-02-21 01:44:07 +0000 |
commit | 13e03ff9d762f8d6c4bfdc200a4f905df8281dd4 (patch) | |
tree | b38026b7c28d143bf12eb4a70f79b6008eb2fd9f /eclass | |
parent | Refactored apache2_pkg_setup (diff) | |
download | historical-13e03ff9d762f8d6c4bfdc200a4f905df8281dd4.tar.gz historical-13e03ff9d762f8d6c4bfdc200a4f905df8281dd4.tar.bz2 historical-13e03ff9d762f8d6c4bfdc200a4f905df8281dd4.zip |
Multilib cleanup.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/myth.eclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/eclass/myth.eclass b/eclass/myth.eclass index 43c0e6e71dae..326481efade1 100644 --- a/eclass/myth.eclass +++ b/eclass/myth.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/myth.eclass,v 1.6 2005/02/12 06:52:42 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/myth.eclass,v 1.7 2005/02/21 01:44:07 eradicator Exp $ # # Author: Daniel Ahlberg <aliz@gentoo.org> # @@ -37,6 +37,11 @@ myth_src_unpack() { -i 'settings.pro' || die "enable debug failed" fi + find ${S} -name '*.pro' -exec sed -i \ + -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ + -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ + {} \; + setup_pro } |