aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarino <marino@FreeBSD.org>2013-07-15 00:22:29 +0800
committermarino <marino@FreeBSD.org>2013-07-15 00:22:29 +0800
commitddb88e86b98d4b49a5d2ab6237d6cf776890e1d3 (patch)
tree66c598135adac5eddf36047d24d765a91bc24eb9
parent1170053094f109ed42278800856dac02cef68eb4 (diff)
downloadfreebsd-ports-gnome-ddb88e86b98d4b49a5d2ab6237d6cf776890e1d3.tar.gz
freebsd-ports-gnome-ddb88e86b98d4b49a5d2ab6237d6cf776890e1d3.tar.zst
freebsd-ports-gnome-ddb88e86b98d4b49a5d2ab6237d6cf776890e1d3.zip
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)
-rw-r--r--mail/thunderbird-dictionaries/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/thunderbird-dictionaries/Makefile b/mail/thunderbird-dictionaries/Makefile
index 98328243adb9..84d8963bd6ae 100644
--- a/mail/thunderbird-dictionaries/Makefile
+++ b/mail/thunderbird-dictionaries/Makefile
@@ -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