diff options
author | Thilo Bangert <bangert@gentoo.org> | 2010-10-22 17:51:58 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2010-10-22 17:51:58 +0000 |
commit | 35ed480bd6738e06f4f8537159e065acd94e6f91 (patch) | |
tree | 6bed11f4e0c692a533c332bf2a7482c05b0507f4 /www-servers/spawn-fcgi | |
parent | Stable on amd64 wrt bug #340031 (diff) | |
download | gentoo-2-35ed480bd6738e06f4f8537159e065acd94e6f91.tar.gz gentoo-2-35ed480bd6738e06f4f8537159e065acd94e6f91.tar.bz2 gentoo-2-35ed480bd6738e06f4f8537159e065acd94e6f91.zip |
POSIX compatibility (#331487)
(Portage version: 2.2_rc98/cvs/Linux i686)
Diffstat (limited to 'www-servers/spawn-fcgi')
-rw-r--r-- | www-servers/spawn-fcgi/ChangeLog | 5 | ||||
-rw-r--r-- | www-servers/spawn-fcgi/files/spawn-fcgi.initd | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/www-servers/spawn-fcgi/ChangeLog b/www-servers/spawn-fcgi/ChangeLog index 8a5f04513f98..7e161c1d7517 100644 --- a/www-servers/spawn-fcgi/ChangeLog +++ b/www-servers/spawn-fcgi/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-servers/spawn-fcgi # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/ChangeLog,v 1.28 2010/05/21 18:56:04 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/ChangeLog,v 1.29 2010/10/22 17:51:58 bangert Exp $ + + 22 Oct 2010; Thilo Bangert <bangert@gentoo.org> files/spawn-fcgi.initd: + POSIX compatibility (#331487) 21 May 2010; Pacho Ramos <pacho@gentoo.org> spawn-fcgi-1.6.3.ebuild: stable amd64, bug 302530 diff --git a/www-servers/spawn-fcgi/files/spawn-fcgi.initd b/www-servers/spawn-fcgi/files/spawn-fcgi.initd index 0b138cecca7e..61856fd35b4b 100644 --- a/www-servers/spawn-fcgi/files/spawn-fcgi.initd +++ b/www-servers/spawn-fcgi/files/spawn-fcgi.initd @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/files/spawn-fcgi.initd,v 1.11 2009/09/28 08:38:02 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/files/spawn-fcgi.initd,v 1.12 2010/10/22 17:51:58 bangert Exp $ PROGNAME=${SVCNAME#*.} SPAWNFCGI=/usr/bin/spawn-fcgi @@ -14,7 +14,7 @@ depend() { start() { local X E OPTIONS i RETVAL FCGI_PROGRAM_EXEC - FCGI_PROGRAM_EXEC=(${FCGI_PROGRAM}) + FCGI_PROGRAM_EXEC=$(echo ${FCGI_PROGRAM} | awk "{print \$1}") if [ "${SVCNAME}" = "spawn-fcgi" ]; then eerror "You are not supposed to run this script directly. Create a symlink" |