aboutsummaryrefslogtreecommitdiff
path: root/www/fcgiwrap
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2010-11-29 11:47:07 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2010-11-29 11:47:07 +0000
commit3923cc4b690aef096899331858010556596a2134 (patch)
tree00296056fcfda5966bd4f398ce66c81f2db96a66 /www/fcgiwrap
parent4d977d352e8074db5f1e9a9c078c198f44a4beb8 (diff)
downloadports-3923cc4b690aef096899331858010556596a2134.tar.gz
ports-3923cc4b690aef096899331858010556596a2134.zip
Fix rc script when fcgiwrap_user is not set
bump portrevision
Notes
Notes: svn path=/head/; revision=265371
Diffstat (limited to 'www/fcgiwrap')
-rw-r--r--www/fcgiwrap/Makefile2
-rw-r--r--www/fcgiwrap/files/fcgiwrap.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/www/fcgiwrap/Makefile b/www/fcgiwrap/Makefile
index dd869a7b20d7..7faf43057135 100644
--- a/www/fcgiwrap/Makefile
+++ b/www/fcgiwrap/Makefile
@@ -7,7 +7,7 @@
PORTNAME= fcgiwrap
PORTVERSION= 1.0.3
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= www
MASTER_SITES= http://cloud.github.com/downloads/gnosek/fcgiwrap/
diff --git a/www/fcgiwrap/files/fcgiwrap.in b/www/fcgiwrap/files/fcgiwrap.in
index f550f3415c63..82f4f451d1c4 100644
--- a/www/fcgiwrap/files/fcgiwrap.in
+++ b/www/fcgiwrap/files/fcgiwrap.in
@@ -38,7 +38,7 @@ fcgiwrap_precmd() {
fcgiwrap_setfib
test -d /var/run/fcgiwrap || mkdir -p /var/run/fcgiwrap
- if [ -n ${fcgiwrap_user} ]; then
+ if [ -n "${fcgiwrap_user}" ]; then
chown -R ${fcgiwrap_user} /var/run/fcgiwrap
fi
}