workaround for cvs not handling many args
This commit is contained in:
parent
c5fae8a617
commit
194e51aff0
1 changed files with 6 additions and 3 deletions
|
@ -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 " \
|
||||
|
|
Loading…
Reference in a new issue