diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-04-03 14:06:37 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-04-03 14:06:37 +0000 |
commit | bf0393298cc50bf01e2dfa1e1c80f56d697776aa (patch) | |
tree | b09ad440f018b3b91d553f0e1a0afa67b004f4bb /app-benchmarks/bootchart2 | |
parent | Do not apply icu49-patch2 for now as it fails on 3.5 now. (diff) | |
download | gentoo-2-bf0393298cc50bf01e2dfa1e1c80f56d697776aa.tar.gz gentoo-2-bf0393298cc50bf01e2dfa1e1c80f56d697776aa.tar.bz2 gentoo-2-bf0393298cc50bf01e2dfa1e1c80f56d697776aa.zip |
app-benchmarks/bootchart2: Closing if clause in init script
(Portage version: 2.2.0_alpha98/cvs/Linux x86_64)
Diffstat (limited to 'app-benchmarks/bootchart2')
-rw-r--r-- | app-benchmarks/bootchart2/ChangeLog | 5 | ||||
-rw-r--r-- | app-benchmarks/bootchart2/files/bootchart2.init | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/app-benchmarks/bootchart2/ChangeLog b/app-benchmarks/bootchart2/ChangeLog index e7971b771f1d..2efc7e22cea4 100644 --- a/app-benchmarks/bootchart2/ChangeLog +++ b/app-benchmarks/bootchart2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-benchmarks/bootchart2 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bootchart2/ChangeLog,v 1.2 2012/04/02 13:06:32 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bootchart2/ChangeLog,v 1.3 2012/04/03 14:06:37 jlec Exp $ + + 03 Apr 2012; Justin Lecher <jlec@gentoo.org> files/bootchart2.init: + Closing if clause in init script *bootchart2-0.14.2-r1 (02 Apr 2012) diff --git a/app-benchmarks/bootchart2/files/bootchart2.init b/app-benchmarks/bootchart2/files/bootchart2.init index 4670fe12d096..9266f827bb4a 100644 --- a/app-benchmarks/bootchart2/files/bootchart2.init +++ b/app-benchmarks/bootchart2/files/bootchart2.init @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bootchart2/files/bootchart2.init,v 1.1 2012/04/02 13:06:33 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bootchart2/files/bootchart2.init,v 1.2 2012/04/03 14:06:37 jlec Exp $ depend() { use localmount @@ -13,7 +13,8 @@ start() { ebegin "Scheduling termination of Bootchart" /sbin/bootchartd start /sbin/bootchartd wait & - eend $? + eend $? + fi else elog "No bootchart process found!" eindent |