diff options
author | marino <marino@FreeBSD.org> | 2014-05-29 21:49:23 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-05-29 21:49:23 +0800 |
commit | 75f441004b89f562618727321373e87cc467c61d (patch) | |
tree | f63629bcaef5f0158237a4ca350de290989b28ac /textproc | |
parent | f3992f971c02ba3410af04fb825dc8aca73d228a (diff) | |
download | freebsd-ports-gnome-75f441004b89f562618727321373e87cc467c61d.tar.gz freebsd-ports-gnome-75f441004b89f562618727321373e87cc467c61d.tar.zst freebsd-ports-gnome-75f441004b89f562618727321373e87cc467c61d.zip |
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
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/docbook-sgml/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/docbook-sgml/Makefile b/textproc/docbook-sgml/Makefile index 2ae75a35c977..35c0f3fabc6f 100644 --- a/textproc/docbook-sgml/Makefile +++ b/textproc/docbook-sgml/Makefile @@ -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 |