diff options
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/arch/x86/ChangeLog | 5 | ||||
-rw-r--r-- | profiles/arch/x86/profile.bashrc | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/profiles/arch/x86/ChangeLog b/profiles/arch/x86/ChangeLog index e5997b00211c..8e3721558d55 100644 --- a/profiles/arch/x86/ChangeLog +++ b/profiles/arch/x86/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for Gentoo/x86 profile directory # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/arch/x86/ChangeLog,v 1.72 2011/07/03 23:36:32 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/x86/ChangeLog,v 1.73 2011/07/08 15:36:30 ssuominen Exp $ + + 08 Jul 2011; Samuli Suominen <ssuominen@gentoo.org> profile.bashrc: + Convert "hasq" to "has" and "useq" to "use". 03 Jul 2011; Alexey Shvetsov <alexxy@gentoo.org> package.use.mask: unmask maui use flag for torque diff --git a/profiles/arch/x86/profile.bashrc b/profiles/arch/x86/profile.bashrc index 23caf5b851dc..cf66d2d68f6b 100644 --- a/profiles/arch/x86/profile.bashrc +++ b/profiles/arch/x86/profile.bashrc @@ -1,8 +1,8 @@ if [[ ${EBUILD_PHASE} == "setup" ]] ; then # on x86, -pg requires the frame pointer, so turning it off makes no sense - if hasq profile ${IUSE} && useq profile && \ - hasq -fomit-frame-pointer ${CFLAGS} ${CXXFLAGS} + if has profile ${IUSE} && use profile && \ + has -fomit-frame-pointer ${CFLAGS} ${CXXFLAGS} then eerror "\nUSE=profile and -fomit-frame-pointer make no sense" eerror "Fix your build settings to avoid build failures\n" |