Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Jul 2013 16:22:29 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r322993 - head/mail/thunderbird-dictionaries
Message-ID:  <201307141622.r6EGMTQi014726@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307141622.r6EGMTQi014726>