Summary: | [PATCH] textproc/docbook-xml Revert r284943 for docbook-xml to fix install | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | Chris Rees <crees> |
Component: | Individual Port(s) | Assignee: | Jun Kuriyama <kuriyama> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | ||
Priority: | Normal | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
Chris Rees
2013-10-04 21:10:01 UTC
Responsible Changed From-To: freebsd-ports-bugs->kuriyama Over to maintainer (via the GNATS Auto Assign Tool) 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 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Oops, duplicated my own PR (ports/182022). |