1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

textproc/docbook-sgml: explicitly use ${TAR} for extraction

Despite all 8 distribution files being zip archives, the extraction target
is using a tar-specific set of arguments.  USES=zip cannot be used (native
or infozip) so explicitly require ${TAR} for future-proofing reasons.

Approved by:	Infrastructure blanket
This commit is contained in:
John Marino 2014-05-29 13:49:23 +00:00
parent 73fef465de
commit 7d017a5151
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=355698

View File

@ -31,7 +31,7 @@ do-extract:
@${RM} -rf ${WRKDIR}
@${MKDIR} ${WRKDIR}
.for df in ${DISTFILES:C,:.*,,}
@cd ${WRKDIR} && ${EXTRACT_CMD} \
@cd ${WRKDIR} && ${TAR} \
${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${df} \
${EXTRACT_AFTER_ARGS} -s ,^,${df:R}/,
.endfor