summaryrefslogtreecommitdiff
path: root/eclass
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
commit4fc62f5a9231a9d21e03f8af8bed7622ca74a7d3 (patch)
treedb4354dec7a10d629732da9cca87b63fb1a7d134 /eclass
parentimhangul-0.9.7, imhangul-0.9.9 Changed KEYWORDS to x86 (diff)
downloadhistorical-4fc62f5a9231a9d21e03f8af8bed7622ca74a7d3.tar.gz
historical-4fc62f5a9231a9d21e03f8af8bed7622ca74a7d3.tar.bz2
historical-4fc62f5a9231a9d21e03f8af8bed7622ca74a7d3.zip
include -mtune in the list
Diffstat (limited to '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
}