diff options
author | Chris White <chriswhite@gentoo.org> | 2004-12-25 18:45:56 +0000 |
---|---|---|
committer | Chris White <chriswhite@gentoo.org> | 2004-12-25 18:45:56 +0000 |
commit | 0b98afc1e0c75ddad95bd1419adefce5c23db111 (patch) | |
tree | 6e60b9a6460d6244359540fccd20ffa6007db367 /eclass | |
parent | Fixed ChangeLog header. (diff) | |
download | historical-0b98afc1e0c75ddad95bd1419adefce5c23db111.tar.gz historical-0b98afc1e0c75ddad95bd1419adefce5c23db111.tar.bz2 historical-0b98afc1e0c75ddad95bd1419adefce5c23db111.zip |
Setting up ppc specific ALLOWED_FLAGS with the first being -mabi.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/flag-o-matic.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass index 223b4b9f1448..da413cb89092 100644 --- a/eclass/flag-o-matic.eclass +++ b/eclass/flag-o-matic.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/flag-o-matic.eclass,v 1.78 2004/12/22 21:18:35 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.79 2004/12/25 18:45:56 chriswhite Exp $ # # Author Bart Verwilst <verwilst@gentoo.org> @@ -86,6 +86,7 @@ setup-allowed-flags() { alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; sparc) ALLOWED_FLAGS="${ALLOWED_FLAGS} -m32 -m64" ;; + ppc) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mabi" ;; esac fi # allow a bunch of flags that negate features / control ABI |