1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

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)
This commit is contained in:
Chris Rees 2013-10-06 12:34:47 +00:00
parent 4614867608
commit 38c87a53f7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=329556

View File

@ -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