svn commit: r322993 - head/mail/thunderbird-dictionaries
John Marino
marino at FreeBSD.org
Sun Jul 14 16:22:30 UTC 2013
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
More information about the svn-ports-head
mailing list