aboutsummaryrefslogtreecommitdiffstats
path: root/astro/boinc-setiathome-enhanced
diff options
context:
space:
mode:
authorrene <rene@FreeBSD.org>2012-10-08 20:20:40 +0800
committerrene <rene@FreeBSD.org>2012-10-08 20:20:40 +0800
commitb0687c75ac537374aeca907079a49e77a95e5dae (patch)
tree17c18e0e74dc5b1bcc617cea34c42e4bcb3c3bf9 /astro/boinc-setiathome-enhanced
parent51a2adf88754281496b62e8e3709f3321d99ddc3 (diff)
downloadfreebsd-ports-gnome-b0687c75ac537374aeca907079a49e77a95e5dae.tar.gz
freebsd-ports-gnome-b0687c75ac537374aeca907079a49e77a95e5dae.tar.zst
freebsd-ports-gnome-b0687c75ac537374aeca907079a49e77a95e5dae.zip
Fix previous commit, chown does not like uninitialized variables.
Diffstat (limited to 'astro/boinc-setiathome-enhanced')
-rw-r--r--astro/boinc-setiathome-enhanced/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/astro/boinc-setiathome-enhanced/Makefile b/astro/boinc-setiathome-enhanced/Makefile
index f0e65ae0946a..3cc376ee383e 100644
--- a/astro/boinc-setiathome-enhanced/Makefile
+++ b/astro/boinc-setiathome-enhanced/Makefile
@@ -78,7 +78,9 @@ SUB_FILES= pkg-deinstall pkg-install pkg-message
SUB_LIST= SETI_BINARY=${SETI_BINARY} \
SETI_SITE=${SETI_SITE} \
SETI_VERSION=${PORTVERSION:S/.//} \
- BOINC_CLIENT_HOME=${BOINC_CLIENT_HOME}
+ BOINC_CLIENT_HOME=${BOINC_CLIENT_HOME} \
+ BOINC_CLIENT_USER=${BOINC_CLIENT_USER} \
+ BOINC_CLIENT_GROUP=${BOINC_CLIENT_GROUP}
PLIST_SUB+= SETI_BINARY=${SETI_BINARY} \
SETI_SITE=${SETI_SITE} \
BOINC_CLIENT_HOME=${BOINC_CLIENT_HOME} \