Date: Fri, 30 May 2014 16:59:37 +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: r355874 - head/textproc/docbook-xml Message-ID: <201405301659.s4UGxbnv063277@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Fri May 30 16:59:37 2014 New Revision: 355874 URL: http://svnweb.freebsd.org/changeset/ports/355874 QAT: https://qat.redports.org/buildarchive/r355874/ Log: textproc/docbook-xml: explicitly use ${TAR} for extraction Despite all 6 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 Modified: head/textproc/docbook-xml/Makefile Modified: head/textproc/docbook-xml/Makefile ============================================================================== --- head/textproc/docbook-xml/Makefile Fri May 30 16:54:50 2014 (r355873) +++ head/textproc/docbook-xml/Makefile Fri May 30 16:59:37 2014 (r355874) @@ -33,7 +33,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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405301659.s4UGxbnv063277>