workaround for cvs not handling many args

This commit is contained in:
Ben Gras 2011-12-14 01:14:11 +01:00
parent c5fae8a617
commit 194e51aff0

View File

@ -127,9 +127,12 @@ install: includes services hdboot
# download and update NetBSD reference sources. # download and update NetBSD reference sources.
nbsd_fetch: nbsd_fetch:
export CVS_RSH=ssh; \ export CVS_RSH=ssh; \
cd ${MINIXSRCDIR} && awk '{print $$2;}' < tools/nbsd_ports \ echo "retrieving hierarchies from ${NBSD_CVSROOT}"; \
| xargs -t cvs -d ${NBSD_CVSROOT} co -N -d nbsdsrc ${NBSD_REF} for d in `awk '{print $$2;}' < nbsd_ports`; \
do echo "retrieving $$d .."; \
cd ${MINIXSRCDIR} && cvs -q -d ${NBSD_CVSROOT} co -N -d nbsdsrc $$d; \
done
nbsd_diff: nbsd_diff:
cd ${MINIXSRCDIR} && awk '{ system("sh tools/nbsd_diff.sh " \ cd ${MINIXSRCDIR} && awk '{ system("sh tools/nbsd_diff.sh " \