diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-06-16 11:44:13 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-06-16 11:44:13 +0000 |
commit | e000cc58f0400c9087fb6a0f944c5c25ed1c1fcf (patch) | |
tree | 747ffbb14f5d600bb69f5ca3b34c9aee25795613 /profiles/hardened | |
parent | Version bump, drop old. (diff) | |
download | historical-e000cc58f0400c9087fb6a0f944c5c25ed1c1fcf.tar.gz historical-e000cc58f0400c9087fb6a0f944c5c25ed1c1fcf.tar.bz2 historical-e000cc58f0400c9087fb6a0f944c5c25ed1c1fcf.zip |
Set default values of FFLAGS and FCFLAGS to profiles default CFLAGS, equally as CXXFLAGS handling
Diffstat (limited to 'profiles/hardened')
-rw-r--r-- | profiles/hardened/linux/amd64/make.defaults | 6 | ||||
-rw-r--r-- | profiles/hardened/linux/x86/make.defaults | 4 | ||||
-rw-r--r-- | profiles/hardened/linux/x86/minimal/make.defaults | 6 |
3 files changed, 11 insertions, 5 deletions
diff --git a/profiles/hardened/linux/amd64/make.defaults b/profiles/hardened/linux/amd64/make.defaults index e5d558995f4c..61b0126ee247 100644 --- a/profiles/hardened/linux/amd64/make.defaults +++ b/profiles/hardened/linux/amd64/make.defaults @@ -1,8 +1,10 @@ -# Copyright 1999-2011 Gentoo Foundation. +# Copyright 1999-2012 Gentoo Foundation. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/amd64/make.defaults,v 1.6 2011/11/17 01:14:26 jmbsvicetto Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/amd64/make.defaults,v 1.7 2012/06/16 11:44:13 jlec Exp $ USE="justify -pic" CFLAGS="-O2 -pipe" CXXFLAGS="${CFLAGS}" +FFLAGS="${CFLAGS}" +FCFLAGS="${CFLAGS}" diff --git a/profiles/hardened/linux/x86/make.defaults b/profiles/hardened/linux/x86/make.defaults index 2e728b3e50aa..31ed33c645eb 100644 --- a/profiles/hardened/linux/x86/make.defaults +++ b/profiles/hardened/linux/x86/make.defaults @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/x86/make.defaults,v 1.11 2012/05/06 16:48:05 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/x86/make.defaults,v 1.12 2012/06/16 11:44:13 jlec Exp $ ARCH="x86" ACCEPT_KEYWORDS="x86" @@ -8,6 +8,8 @@ ACCEPT_KEYWORDS="x86" CHOST="i686-pc-linux-gnu" CFLAGS="-march=i686 -O2 -pipe" CXXFLAGS="${CFLAGS}" +FFLAGS="${CFLAGS}" +FCFLAGS="${CFLAGS}" USE="nptl" diff --git a/profiles/hardened/linux/x86/minimal/make.defaults b/profiles/hardened/linux/x86/minimal/make.defaults index 41dd0b04ed21..141c258a01e0 100644 --- a/profiles/hardened/linux/x86/minimal/make.defaults +++ b/profiles/hardened/linux/x86/minimal/make.defaults @@ -1,6 +1,6 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/x86/minimal/make.defaults,v 1.3 2010/02/01 11:42:34 gengor Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/x86/minimal/make.defaults,v 1.4 2012/06/16 11:44:13 jlec Exp $ # - TESTING PROFILE - TESTING PROFILE - # ------ USE AT YOUR OWN RISK ------ @@ -9,5 +9,7 @@ USE="-* crypt hardened minimal multicall ncurses pic readline zlib" CFLAGS="-march=i686 -Os -pipe" CXXFLAGS="${CFLAGS}" +FFLAGS="${CFLAGS}" +FCFLAGS="${CFLAGS}" FEATURES="nodoc noinfo noman" |