summaryrefslogtreecommitdiff
path: root/www/nginx-devel
diff options
context:
space:
mode:
authorDoug Barton <dougb@FreeBSD.org>2010-03-28 04:44:55 +0000
committerDoug Barton <dougb@FreeBSD.org>2010-03-28 04:44:55 +0000
commit045030410823853fcaee9042f4e1670a9da7caef (patch)
tree42ba2c5101f78b89c9b7bb3085073058c04cd034 /www/nginx-devel
parent- Update to 1.45 (diff)
Cleanse uneeded RC_SUBR variables
Approved by: pgolluci
Diffstat (limited to 'www/nginx-devel')
-rw-r--r--www/nginx-devel/Makefile2
-rw-r--r--www/nginx-devel/files/nginx.sh.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/www/nginx-devel/Makefile b/www/nginx-devel/Makefile
index 7ad35f34ac64..983c23d9753a 100644
--- a/www/nginx-devel/Makefile
+++ b/www/nginx-devel/Makefile
@@ -95,7 +95,7 @@ NGINX_ERRORLOG?= ${NGINX_LOGDIR}/nginx-error.log
CONFLICTS?= nginx-0.7.*
USE_RC_SUBR= nginx.sh
-SUB_LIST+= RC_SUBR_SUFFIX=${RC_SUBR_SUFFIX} WWWOWN=${WWWOWN}
+SUB_LIST+= WWWOWN=${WWWOWN}
HAS_CONFIGURE= yes
CONFIGURE_ARGS+=--prefix=${ETCDIR} \
diff --git a/www/nginx-devel/files/nginx.sh.in b/www/nginx-devel/files/nginx.sh.in
index e0992e201d49..7e6d0d19c869 100644
--- a/www/nginx-devel/files/nginx.sh.in
+++ b/www/nginx-devel/files/nginx.sh.in
@@ -64,7 +64,7 @@ else
if [ "x${nginx_profiles}" != "x" -a "x$1" != "x" ]; then
for profile in ${nginx_profiles}; do
echo "===> nginx profile: ${profile}"
- %%PREFIX%%/etc/rc.d/nginx%%RC_SUBR_SUFFIX%% $1 ${profile}
+ %%PREFIX%%/etc/rc.d/nginx $1 ${profile}
retcode="$?"
if [ "0${retcode}" -ne 0 ]; then
failed="${profile} (${retcode}) ${failed:-}"