diff options
author | 2004-12-25 18:45:56 +0000 | |
---|---|---|
committer | 2004-12-25 18:45:56 +0000 | |
commit | 32279b0c3b521bd52a9b3618e98f0934045d9983 (patch) | |
tree | ac965bb3fea64c832ca0843fee203683f2c14dd4 /eclass | |
parent | Fixed ChangeLog header. (Manifest recommit) (diff) | |
download | gentoo-2-32279b0c3b521bd52a9b3618e98f0934045d9983.tar.gz gentoo-2-32279b0c3b521bd52a9b3618e98f0934045d9983.tar.bz2 gentoo-2-32279b0c3b521bd52a9b3618e98f0934045d9983.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 |