From owner-svn-ports-head@FreeBSD.ORG Sun Jul 14 16:22:30 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1E543D82; Sun, 14 Jul 2013 16:22:30 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 1077C826; Sun, 14 Jul 2013 16:22:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6EGMTB9014727; Sun, 14 Jul 2013 16:22:29 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6EGMTQi014726; Sun, 14 Jul 2013 16:22:29 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201307141622.r6EGMTQi014726@svn.freebsd.org> From: John Marino Date: Sun, 14 Jul 2013 16:22:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r322993 - head/mail/thunderbird-dictionaries X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jul 2013 16:22:30 -0000 Author: marino Date: Sun Jul 14 16:22:29 2013 New Revision: 322993 URL: http://svnweb.freebsd.org/changeset/ports/322993 Log: mail/thunderbird-dictionaries: Fix extraction phase typo The extra "$" results in none of the distfiles are extracted into the work directory when bmake is used. Apparently fmake is more tolerant as there are no failed logs on portmon. Approved by: bapt (mentor) Modified: head/mail/thunderbird-dictionaries/Makefile Modified: head/mail/thunderbird-dictionaries/Makefile ============================================================================== --- head/mail/thunderbird-dictionaries/Makefile Sun Jul 14 16:17:59 2013 (r322992) +++ head/mail/thunderbird-dictionaries/Makefile Sun Jul 14 16:22:29 2013 (r322993) @@ -56,7 +56,7 @@ PLIST_SUB+= ${f}="@comment " do-extract: @${MKDIR} ${WRKSRC} .for f in ${ALLDICTS} -.if ${PORT_OPTIONS:M$${f}} +.if ${PORT_OPTIONS:M${f}} @${UNZIP_CMD} -q ${DISTDIR}/${DIST_SUBDIR}/${${f}_FILE} -d ${WRKSRC}/${${f}_FILE} .endif .endfor