summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-02-26 06:47:23 +0000
committerMike Frysinger <vapier@gentoo.org>2004-02-26 06:47:23 +0000
commit2269171859fc5fc78cab1a3645b94999f2537c0f (patch)
tree4bccf524c666976f33774e4f8af9ca0dd200675f /eclass/flag-o-matic.eclass
parentimhangul-0.9.7, imhangul-0.9.9 Changed KEYWORDS to x86 (diff)
downloadgentoo-2-2269171859fc5fc78cab1a3645b94999f2537c0f.tar.gz
gentoo-2-2269171859fc5fc78cab1a3645b94999f2537c0f.tar.bz2
gentoo-2-2269171859fc5fc78cab1a3645b94999f2537c0f.zip
include -mtune in the list
Diffstat (limited to 'eclass/flag-o-matic.eclass')
-rw-r--r--eclass/flag-o-matic.eclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass
index df3ed286e586..50c5b9527b28 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.37 2004/02/21 07:19:29 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.38 2004/02/26 06:47:23 vapier Exp $
#
# Author Bart Verwilst <verwilst@gentoo.org>
@@ -123,6 +123,7 @@ replace-cpu-flags() {
for oldcpu in "$@" ; do
replace-flags -march=${oldcpu} -march=${newcpu}
replace-flags -mcpu=${oldcpu} -mcpu=${newcpu}
+ replace-flags -mtune=${oldcpu} -mtune=${newcpu}
done
return 0
}