svn commit: r430902 - branches/2017Q1/irc/quassel

Ben Woods woodsb02 at FreeBSD.org
Sun Jan 8 22:54:16 UTC 2017


Author: woodsb02
Date: Sun Jan  8 22:54:15 2017
New Revision: 430902
URL: https://svnweb.freebsd.org/changeset/ports/430902

Log:
  MFH: r430857
  
  irc/quassel: Fix erroneously empty value for PLIST variable
  
  This was causing the build of slave port irc/quassel-core to hang during
  the ports build step which generates temporary packing list, as the sed
  command to perform PLIST_SUB did not have a filename argument provided.
  
  Reported by:	Steve Hay <hay.steve at gmail.com>
  
  Approved by:	ports-secteam (junovitch)

Modified:
  branches/2017Q1/irc/quassel/Makefile
Directory Properties:
  branches/2017Q1/   (props changed)

Modified: branches/2017Q1/irc/quassel/Makefile
==============================================================================
--- branches/2017Q1/irc/quassel/Makefile	Sun Jan  8 22:42:50 2017	(r430901)
+++ branches/2017Q1/irc/quassel/Makefile	Sun Jan  8 22:54:15 2017	(r430902)
@@ -44,7 +44,7 @@ CORE_SUB_FILES=		pkg-message
 CORE_VARS=		use_rc_subr=quasselcore \
 			users=quasselcore \
 			groups=quasselcore \
-			plist= # empty to allow core to override PLIST_FILES
+			plist=${NONEXISTENT} # allow core to override PLIST_FILES
 CORE_PLIST_FILES=	bin/quasselcore
 
 MONO_DESC=		Quassel standalone (monolithic binary: core+client combined)


More information about the svn-ports-all mailing list