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 | 50fac3fd0c949201bb3735935f01efc79214cca6 (patch) | |
tree | 57c0649c19e16ce2ced7585baa85f235f3773487 /eclass/flag-o-matic.eclass | |
parent | Marked as stable. (diff) | |
download | historical-50fac3fd0c949201bb3735935f01efc79214cca6.tar.gz historical-50fac3fd0c949201bb3735935f01efc79214cca6.tar.bz2 historical-50fac3fd0c949201bb3735935f01efc79214cca6.zip |
add -fPIC to allowed flags for ia64
Diffstat (limited to 'eclass/flag-o-matic.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 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 |