1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00

Don't use an EXTRACT_DEPENDS during the install phase.

Requested by:	kris
This commit is contained in:
Joe Marcus Clarke 2004-04-07 05:06:31 +00:00
parent 30a6592296
commit c8c6f657f8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=106377

View File

@ -35,7 +35,7 @@ pre-su-install:
@[ -d ${DOCBOOKDIR}/ent ] || ${MKDIR} ${DOCBOOKDIR}/ent
do-install:
for file in `unzip -l ${DISTDIR}/${DISTFILES}|${AWK} '/:[0-9].*[^\/]$$/{print $$4}'`; do \
for file in `${FIND} ${WRKSRC} -type f | ${SED} -e 's|^${WRKSRC}/||' | ${GREP} -v '^\.' | ${SORT}`; do \
${INSTALL_DATA} ${WRKSRC}/$$file ${DOCBOOKDIR}/$$file; \
done