svn commit: r355874 - head/textproc/docbook-xml

John Marino marino at FreeBSD.org
Fri May 30 16:59:38 UTC 2014


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


More information about the svn-ports-all mailing list