diff options
author | marino <marino@FreeBSD.org> | 2014-05-31 00:59:37 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-05-31 00:59:37 +0800 |
commit | 9f604aef194387af6d8a117177cdf255355c23ad (patch) | |
tree | 814119fe45de298b01417598cc3d46af059a3c56 /textproc/docbook-xml | |
parent | a49f563a690b54370b8f828225ba53993e56dcc2 (diff) | |
download | freebsd-ports-gnome-9f604aef194387af6d8a117177cdf255355c23ad.tar.gz freebsd-ports-gnome-9f604aef194387af6d8a117177cdf255355c23ad.tar.zst freebsd-ports-gnome-9f604aef194387af6d8a117177cdf255355c23ad.zip |
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
Diffstat (limited to 'textproc/docbook-xml')
-rw-r--r-- | textproc/docbook-xml/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/docbook-xml/Makefile b/textproc/docbook-xml/Makefile index 7eba0d0ab6c7..837c3d58bb94 100644 --- a/textproc/docbook-xml/Makefile +++ b/textproc/docbook-xml/Makefile @@ -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 |