diff options
author | Mike Gilbert <floppym@gentoo.org> | 2013-01-08 18:45:38 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2013-01-08 18:45:38 +0000 |
commit | d407962a1e58726e35bbbfed222f0eae397a681b (patch) | |
tree | 9ff930b6e2d3e8819ec2e20b97c23c8d9bf5d750 /dev-python/twisted | |
parent | Drop epause usage #450922 by Jean-Francis Roy. (diff) | |
download | gentoo-2-d407962a1e58726e35bbbfed222f0eae397a681b.tar.gz gentoo-2-d407962a1e58726e35bbbfed222f0eae397a681b.tar.bz2 gentoo-2-d407962a1e58726e35bbbfed222f0eae397a681b.zip |
Remove bashism, #450806 by kensington.
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Diffstat (limited to 'dev-python/twisted')
-rw-r--r-- | dev-python/twisted/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/twisted/files/twistd.init | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-python/twisted/ChangeLog b/dev-python/twisted/ChangeLog index 253688adc486..d604af93c7f2 100644 --- a/dev-python/twisted/ChangeLog +++ b/dev-python/twisted/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/twisted -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.158 2012/10/08 13:49:11 marienz Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.159 2013/01/08 18:45:38 floppym Exp $ + + 08 Jan 2013; Mike Gilbert <floppym@gentoo.org> files/twistd.init: + Remove bashism, #450806 by kensington. 08 Oct 2012; Marien Zwart <marienz@gentoo.org> twisted-12.2.0.ebuild: Tighten python version dependency (spotted by Arfrever). diff --git a/dev-python/twisted/files/twistd.init b/dev-python/twisted/files/twistd.init index 5d4d4e79fe21..e7b29f1a7e96 100644 --- a/dev-python/twisted/files/twistd.init +++ b/dev-python/twisted/files/twistd.init @@ -5,7 +5,7 @@ depend() { } start() { - if [[ -z "${TWISTD_OPTS}" ]]; then + if [ -z "${TWISTD_OPTS}" ]; then eerror "TWISTD_OPTS is not set!" eerror "You need to configure twistd in /etc/conf.d/twistd." return 1 |