svn commit: r355698 - head/textproc/docbook-sgml

John Marino marino at FreeBSD.org
Thu May 29 13:49:23 UTC 2014


Author: marino
Date: Thu May 29 13:49:23 2014
New Revision: 355698
URL: http://svnweb.freebsd.org/changeset/ports/355698
QAT: https://qat.redports.org/buildarchive/r355698/

Log:
  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

Modified:
  head/textproc/docbook-sgml/Makefile

Modified: head/textproc/docbook-sgml/Makefile
==============================================================================
--- head/textproc/docbook-sgml/Makefile	Thu May 29 13:38:46 2014	(r355697)
+++ head/textproc/docbook-sgml/Makefile	Thu May 29 13:49:23 2014	(r355698)
@@ -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


More information about the svn-ports-all mailing list