From owner-svn-ports-all@freebsd.org Sun Jan 8 22:54:16 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C199CA6915; Sun, 8 Jan 2017 22:54:16 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B40116DB; Sun, 8 Jan 2017 22:54:16 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v08MsFtU025666; Sun, 8 Jan 2017 22:54:15 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v08MsFbA025665; Sun, 8 Jan 2017 22:54:15 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201701082254.v08MsFbA025665@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sun, 8 Jan 2017 22:54:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r430902 - branches/2017Q1/irc/quassel X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jan 2017 22:54:16 -0000 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 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)