diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2012-02-03 09:22:02 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2012-02-03 09:22:02 +0000 |
commit | a2c355639a1d1ef1bd809c7b5046f00c3964536b (patch) | |
tree | 75ab3eec12a161ccc8ecd8dcd1832cd24a6f6e91 /net-misc/gogoc | |
parent | Do not call gcc directly, reported by k01 in bug #401955 (diff) | |
download | gentoo-2-a2c355639a1d1ef1bd809c7b5046f00c3964536b.tar.gz gentoo-2-a2c355639a1d1ef1bd809c7b5046f00c3964536b.tar.bz2 gentoo-2-a2c355639a1d1ef1bd809c7b5046f00c3964536b.zip |
Fix warning message in init script, bug #401877
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/gogoc')
-rw-r--r-- | net-misc/gogoc/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/gogoc/files/gogoc.rc | 6 |
2 files changed, 8 insertions, 5 deletions
diff --git a/net-misc/gogoc/ChangeLog b/net-misc/gogoc/ChangeLog index 02652723bd66..7c29d9d8345e 100644 --- a/net-misc/gogoc/ChangeLog +++ b/net-misc/gogoc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/gogoc -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/gogoc/ChangeLog,v 1.14 2011/05/07 18:14:11 tomka Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gogoc/ChangeLog,v 1.15 2012/02/03 09:22:02 voyageur Exp $ + + 03 Feb 2012; Bernard Cafarelli <voyageur@gentoo.org> files/gogoc.rc: + Fix warning message in init script, bug #401877 07 May 2011; Thomas Kahle <tomka@gentoo.org> gogoc-1.2-r1.ebuild: x86 stable per bug 362549 diff --git a/net-misc/gogoc/files/gogoc.rc b/net-misc/gogoc/files/gogoc.rc index 43b472f1ff53..8f9ce453a6db 100644 --- a/net-misc/gogoc/files/gogoc.rc +++ b/net-misc/gogoc/files/gogoc.rc @@ -1,7 +1,7 @@ #!/sbin/runscript -# 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/net-misc/gogoc/files/gogoc.rc,v 1.4 2010/10/12 18:21:16 voyageur Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/gogoc/files/gogoc.rc,v 1.5 2012/02/03 09:22:02 voyageur Exp $ depend() { need net localmount @@ -20,7 +20,7 @@ checktun() { checkconfig() { if ! [ -f /etc/gogoc/gogoc.conf ]; then - eerror "Unable to find configuration file /etc/gogoc.conf" + eerror "Unable to find configuration file /etc/gogoc/gogoc.conf" return 1 fi } |