11 lines
255 B
Bash
11 lines
255 B
Bash
#!/bin/sh
|
|
# $NetBSD: do-sandbox-build,v 1.7 2004/01/15 10:02:54 grant Exp $
|
|
|
|
#
|
|
# Script to start a sandbox build
|
|
#
|
|
# See pkgsrc/Packages.txt for documentation!
|
|
#
|
|
|
|
sh=`which sh`
|
|
chroot /usr/sandbox $sh -c "cd /usr/cvs.local/pkgsrc/ ; $sh mk/bulk/build $@"
|