diff options
author | Guy Martin <gmsoft@gentoo.org> | 2003-12-30 22:54:59 +0000 |
---|---|---|
committer | Guy Martin <gmsoft@gentoo.org> | 2003-12-30 22:54:59 +0000 |
commit | a0eb5e0ac9ce3a8c0155607a2d1759228a4ee6bf (patch) | |
tree | 54f6fa882ab75bd2bf7ba01cf5f7ce1f66ac900c /eclass/kde.eclass | |
parent | Removed no more usefull hppa tweaks. (diff) | |
download | gentoo-2-a0eb5e0ac9ce3a8c0155607a2d1759228a4ee6bf.tar.gz gentoo-2-a0eb5e0ac9ce3a8c0155607a2d1759228a4ee6bf.tar.bz2 gentoo-2-a0eb5e0ac9ce3a8c0155607a2d1759228a4ee6bf.zip |
Removed no more usefull hppa tweaks.
Diffstat (limited to 'eclass/kde.eclass')
-rw-r--r-- | eclass/kde.eclass | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index 63813f12b052..788686a29fd7 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.84 2003/10/11 11:19:29 lanius Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.85 2003/12/30 22:54:59 gmsoft Exp $ # # Author Dan Armak <danarmak@gentoo.org> # @@ -113,23 +113,9 @@ kde_src_compile() { # due to the messed up way configure searches for things export KDEDIRS="${PREFIX}:${KDEDIR}" - # *FLAGS need to be set correctly if we want a succefull build - if [ "${ARCH}" = "hppa" ] - then - export LDFLAGS="-ffunction-sections -Wl,--stub-group-size=25000 -fPIC" - export CFLAGS="-O1 -pipe" - export CXXFLAGS="-O1 -pipe" - fi - cd $S ./configure ${myconf} || die "died running ./configure, $FUNCNAME:configure" - # Seems ./configure add -O2 by default but we don't want it but we need -fPIC - if [ "${ARCH}" = "hppa" ] - then - einfo Fixating Makefiles - find ${S} -name Makefile | while read a; do cp $a $a.orig; sed -e s/-O2/-ffunction-sections\ -fPIC/ $a.orig > $a; done - fi ;; make) export PATH="${KDEDIR}/bin:${PATH}" |