Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Oct 2013 12:34:47 +0000 (UTC)
From:      Chris Rees <crees@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r329556 - head/textproc/docbook-xml
Message-ID:  <201310061234.r96CYlC6031293@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310061234.r96CYlC6031293>