diff options
author | Aron Griffis <agriffis@gentoo.org> | 2003-12-10 21:13:25 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2003-12-10 21:13:25 +0000 |
commit | 9032df976b67a98f58dd0a44c4b43a5d0a162218 (patch) | |
tree | 644082f7330310325ab897f2075d42eeae392f19 | |
parent | Marked as stable. (diff) | |
download | gentoo-2-9032df976b67a98f58dd0a44c4b43a5d0a162218.tar.gz gentoo-2-9032df976b67a98f58dd0a44c4b43a5d0a162218.tar.bz2 gentoo-2-9032df976b67a98f58dd0a44c4b43a5d0a162218.zip |
add -fPIC to allowed flags for ia64
-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 0face1ffc19d..66d9981e3352 100644 --- a/eclass/flag-o-matic.eclass +++ b/eclass/flag-o-matic.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/flag-o-matic.eclass,v 1.30 2003/11/07 18:42:45 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.31 2003/12/10 21:13:25 agriffis Exp $ # # Author Bart Verwilst <verwilst@gentoo.org> @@ -62,6 +62,7 @@ case "${ARCH}" in mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; + ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; esac # C[XX]FLAGS that we are think is ok, but needs testing |