diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-10-24 08:39:31 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-10-24 08:39:31 +0000 |
commit | 84bb2e14becaf7a8e3dcb58894ea1b9240fbdae0 (patch) | |
tree | 7d1f21ba03d247aa26e57e95026e9a8ca8fd36b1 /eclass | |
parent | removing old init scripts (diff) | |
download | historical-84bb2e14becaf7a8e3dcb58894ea1b9240fbdae0.tar.gz historical-84bb2e14becaf7a8e3dcb58894ea1b9240fbdae0.tar.bz2 historical-84bb2e14becaf7a8e3dcb58894ea1b9240fbdae0.zip |
Disable PIE support in FreeBSD, as there it does not work, fixes kde not starting at all.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index 929e143f0122..8c983899e1e2 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.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/kde.eclass,v 1.182 2006/10/14 10:59:36 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.183 2006/10/24 08:39:31 flameeyes Exp $ # # Author Dan Armak <danarmak@gentoo.org> # @@ -315,6 +315,9 @@ EOF einfo "Removing the dummy ltconfig file." rm "${KDE_S}/admin/ltconfig" fi + + use elibc_FreeBSD && myconf="${myconf} --disable-pie" + elibtoolize econf \ ${myconf} \ |