svn commit: r329556 - head/textproc/docbook-xml
Chris Rees
crees at FreeBSD.org
Sun Oct 6 12:34:48 UTC 2013
Author: crees
Date: Sun Oct 6 12:34:47 2013
New Revision: 329556
URL: http://svnweb.freebsd.org/changeset/ports/329556
Log:
Partially revert r284943 to enable building with base unzip.
The better solution would be to do the extraction in the do-extract section.
PR: ports/182648
Submitted by: ports/182022
Approved by: maintainer timeout (kuriyama, 4 weeks)
Modified:
head/textproc/docbook-xml/Makefile
Modified: head/textproc/docbook-xml/Makefile
==============================================================================
--- head/textproc/docbook-xml/Makefile Sun Oct 6 12:34:35 2013 (r329555)
+++ head/textproc/docbook-xml/Makefile Sun Oct 6 12:34:47 2013 (r329556)
@@ -33,7 +33,7 @@ pre-su-install:
@[ -d ${DOCBOOKDIR}/ent ] || ${MKDIR} ${DOCBOOKDIR}/ent
do-install:
- for file in `${UNZIP_CMD} -l ${DISTDIR}/${DISTFILES}|${AWK} '/:[0-9].*[^\/]$$/{print $$4}'`; do \
+ for file in `unzip -l ${DISTDIR}/${DISTFILES}|${AWK} '/:[0-9].*[^\/]$$/{print $$4}'`; do \
${INSTALL_DATA} ${WRKSRC}/$$file ${DOCBOOKDIR}/$$file; \
done
More information about the svn-ports-head
mailing list