svn commit: r305532 - head/astro/boinc-setiathome-enhanced

Rene Ladan rene at FreeBSD.org
Mon Oct 8 12:20:40 UTC 2012


Author: rene
Date: Mon Oct  8 12:20:40 2012
New Revision: 305532
URL: http://svn.freebsd.org/changeset/ports/305532

Log:
  Fix previous commit, chown does not like uninitialized variables.

Modified:
  head/astro/boinc-setiathome-enhanced/Makefile   (contents, props changed)

Modified: head/astro/boinc-setiathome-enhanced/Makefile
==============================================================================
--- head/astro/boinc-setiathome-enhanced/Makefile	Mon Oct  8 12:13:01 2012	(r305531)
+++ head/astro/boinc-setiathome-enhanced/Makefile	Mon Oct  8 12:20:40 2012	(r305532)
@@ -78,7 +78,9 @@ SUB_FILES=	pkg-deinstall pkg-install pkg
 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} \



More information about the svn-ports-all mailing list