pkg: remove verbose output on copy

In the old times this was nice as a control mechanism,
but now we have a plist to match this against.
This commit is contained in:
Franco Fichtner 2018-10-27 23:39:08 +02:00
parent bd7169e6ac
commit 983485d745
2 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,7 @@ PKG_SCRIPTS= +PRE_INSTALL +POST_INSTALL \
scripts:
.for PKG_SCRIPT in ${PKG_SCRIPTS}
@if [ -f ${.CURDIR}/${PKG_SCRIPT} ]; then \
cp -v -- ${.CURDIR}/${PKG_SCRIPT} ${DESTDIR}/; \
cp -- ${.CURDIR}/${PKG_SCRIPT} ${DESTDIR}/; \
fi
.endfor

View File

@ -76,7 +76,7 @@ install-${TARGET}:
fi; \
fi; \
if [ "${TREE}" = "man" ]; then \
gzip -vcn "${DESTDIR}${ROOT_${TARGET}}$${REALTARGET}/$${FILE}" > \
gzip -cn "${DESTDIR}${ROOT_${TARGET}}$${REALTARGET}/$${FILE}" > \
"${DESTDIR}${ROOT_${TARGET}}$${REALTARGET}/$${FILE}.gz"; \
rm "${DESTDIR}${ROOT_${TARGET}}$${REALTARGET}/$${FILE}"; \
fi; \