diff options
author | Thomas Cort <tcort@gentoo.org> | 2006-07-04 13:19:53 +0000 |
---|---|---|
committer | Thomas Cort <tcort@gentoo.org> | 2006-07-04 13:19:53 +0000 |
commit | 5a8e016ea660f6fe7c4d6ce328596b431fa5df9a (patch) | |
tree | c43594c97bd8487f0e9b2db1ae54fed226ac0992 /profiles | |
parent | add dep on gnome-common for macros (diff) | |
download | gentoo-2-5a8e016ea660f6fe7c4d6ce328596b431fa5df9a.tar.gz gentoo-2-5a8e016ea660f6fe7c4d6ce328596b431fa5df9a.tar.bz2 gentoo-2-5a8e016ea660f6fe7c4d6ce328596b431fa5df9a.zip |
Grammar fixes for profile.bashrc.
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/default-linux/amd64/ChangeLog | 7 | ||||
-rw-r--r-- | profiles/default-linux/amd64/profile.bashrc | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/profiles/default-linux/amd64/ChangeLog b/profiles/default-linux/amd64/ChangeLog index 42d0279b5e40..3bd220726b00 100644 --- a/profiles/default-linux/amd64/ChangeLog +++ b/profiles/default-linux/amd64/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for Gentoo/AMD64 profile directory # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/default-linux/amd64/ChangeLog,v 1.6 2006/06/30 22:28:38 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/default-linux/amd64/ChangeLog,v 1.7 2006/07/04 13:19:53 tcort Exp $ + + 04 Jul 2006; Thomas Cort <tcort@gentoo.org> profile.bashrc: + Grammar fixes in profile.bashrc. Replace 'contain(s)' with 'contains' since + CFLAGS is singular. Add a comma to separate the introductory phrase from the + main clause. 30 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org> 2006.1/make.defaults: Removed comment about the keyboard/mouse stuff since spyderous moved it all diff --git a/profiles/default-linux/amd64/profile.bashrc b/profiles/default-linux/amd64/profile.bashrc index e6eda050a243..ea077d335839 100644 --- a/profiles/default-linux/amd64/profile.bashrc +++ b/profiles/default-linux/amd64/profile.bashrc @@ -73,16 +73,16 @@ if [[ ${EBUILD_PHASE} == "setup" ]]; then for flag in "${BAD_FLAGS[@]}"; do if bashrc_has ${flag} ${CFLAGS}; then trigger=1 - eerror "Your CFLAGS contain(s) \"${flag}\" which can break packages." + eerror "Your CFLAGS contains \"${flag}\" which can break packages." fi if bashrc_has ${flag} ${CXXFLAGS}; then trigger=1 - eerror "Your CXXFLAGS contain(s) \"${flag}\" which can break packages." + eerror "Your CXXFLAGS contains \"${flag}\" which can break packages." fi done if [[ ${trigger} ]]; then eerror "" - eerror "Before you file a bug please remove these flags and " + eerror "Before you file a bug, please remove these flags and " eerror "re-compile the package in question as well as all its dependencies" sleep 5 fi |