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

@ -128,8 +128,11 @@ install: includes services hdboot
# download and update NetBSD reference sources.
nbsd_fetch:
export CVS_RSH=ssh; \
cd ${MINIXSRCDIR} && awk '{print $$2;}' < tools/nbsd_ports \
| xargs -t cvs -d ${NBSD_CVSROOT} co -N -d nbsdsrc ${NBSD_REF}
echo "retrieving hierarchies from ${NBSD_CVSROOT}"; \
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:
cd ${MINIXSRCDIR} && awk '{ system("sh tools/nbsd_diff.sh " \