From owner-svn-ports-all@freebsd.org Sun Jan 8 07:22:07 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 E299DCA5973; Sun, 8 Jan 2017 07:22:07 +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 A58571B2C; Sun, 8 Jan 2017 07:22:07 +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 v087M6V7046174; Sun, 8 Jan 2017 07:22:06 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v087M67T046173; Sun, 8 Jan 2017 07:22:06 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201701080722.v087M67T046173@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 07:22:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430857 - head/irc/quassel X-SVN-Group: ports-head 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 07:22:08 -0000 Author: woodsb02 Date: Sun Jan 8 07:22:06 2017 New Revision: 430857 URL: https://svnweb.freebsd.org/changeset/ports/430857 Log: 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 MFH: 2017Q1 Modified: head/irc/quassel/Makefile Modified: head/irc/quassel/Makefile ============================================================================== --- head/irc/quassel/Makefile Sun Jan 8 06:30:40 2017 (r430856) +++ head/irc/quassel/Makefile Sun Jan 8 07:22:06 2017 (r430857) @@ -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)