aboutsummaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
authorpav <pav@FreeBSD.org>2005-08-10 03:21:50 +0800
committerpav <pav@FreeBSD.org>2005-08-10 03:21:50 +0800
commit46d0334d7b67c812f7685ef362e9a6ca50dbd985 (patch)
tree191603476df1cd5a2916cbd45c0cccf83e6d0b12 /games
parent64da8e424ced941cdd1f8274b1f291bad4b6e20c (diff)
downloadfreebsd-ports-gnome-46d0334d7b67c812f7685ef362e9a6ca50dbd985.tar.gz
freebsd-ports-gnome-46d0334d7b67c812f7685ef362e9a6ca50dbd985.tar.zst
freebsd-ports-gnome-46d0334d7b67c812f7685ef362e9a6ca50dbd985.zip
- Rename USER and GROUP to PHPUA_USER and PHPUA_GROUP, the USER variable
was getting in from environment, causing unwanted behaviour and weird failures on pointyhat Approved by: portmgr (marcus)
Diffstat (limited to 'games')
-rw-r--r--games/phpua-engine/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/games/phpua-engine/Makefile b/games/phpua-engine/Makefile
index d20888bfbcdf..3c37deb94d9b 100644
--- a/games/phpua-engine/Makefile
+++ b/games/phpua-engine/Makefile
@@ -22,8 +22,8 @@ PLIST_SUB+= PHPUADIR=${PHPUADIR}
# Dynamic custom variables
WWWDOC?= www/data
-USER?= www
-GROUP?= www
+PHPUA_USER?= www
+PHPUA_GROUP?= www
APPNAME?= phpua
# Static Variables
@@ -59,6 +59,6 @@ do-install:
@ ${CP} -R ${WRKDIR}/plugins ${PREFIX}/${PHPUADIR}/
@ ${CP} -R ${WRKDIR}/templates ${PREFIX}/${PHPUADIR}/
@ ${CP} -R ${WRKDIR}/wap ${PREFIX}/${PHPUADIR}/
- @ ${CHOWN} -R ${USER}:${GROUP} ${PREFIX}/${PHPUADIR}/
+ @ ${CHOWN} -R ${PHPUA_USER}:${PHPUA_GROUP} ${PREFIX}/${PHPUADIR}/
.include <bsd.port.mk>