2649c7e107
argument following the "--" is guaranteed not to start with a dash. Fixes pkg/30362.
14 lines
289 B
Bash
14 lines
289 B
Bash
#!/bin/sh
|
|
# $NetBSD: do-sandbox-build,v 1.12 2005/07/13 22:07:46 rillig Exp $
|
|
|
|
#
|
|
# Script to start a sandbox build
|
|
#
|
|
# See pkgsrc/doc/pkgsrc.txt for documentation!
|
|
#
|
|
|
|
sh="/bin/sh"
|
|
build="mk/bulk/build"
|
|
|
|
chroot /usr/sandbox \
|
|
$sh -c "cd /usr/pkgsrc && exec $sh $build \"\$@\"" $build "$@"
|