diff options
author | dancer <dancer> | 2004-04-06 21:37:42 +0000 |
---|---|---|
committer | dancer <dancer> | 2004-04-06 21:37:42 +0000 |
commit | 02ab1841358a4935da3c3b3922ebc930da4c8edb (patch) | |
tree | 8e6b6507db1c957502284673fd620bcdd899314e /pbuilder-createbuildenv | |
parent | 9470b31c1966be55bce5d4edf5c68dd133b68e37 (diff) | |
download | pbuilder-02ab1841358a4935da3c3b3922ebc930da4c8edb.tar pbuilder-02ab1841358a4935da3c3b3922ebc930da4c8edb.tar.gz |
+ * Implement --variant=buildd support, thanks for Daniel Schepler
+ for the work on debootstrap side.
+ Note that this change does not affect user-mode-linux, since
+ user-mode-linux version uses rootstrap
+ (closes: #154528)
Diffstat (limited to 'pbuilder-createbuildenv')
-rwxr-xr-x | pbuilder-createbuildenv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbuilder-createbuildenv b/pbuilder-createbuildenv index dd0b8c0..3f6ebef 100755 --- a/pbuilder-createbuildenv +++ b/pbuilder-createbuildenv @@ -53,7 +53,7 @@ if [ -n "$HOOKDIR" ]; then echo " -> Applying user distribution dist build script $DEBOOTSTRAPSCRIPT" fi fi -if ! ( cd "$BUILDPLACE" && debootstrap "$DISTRIBUTION" . "$MIRRORSITE" "$DEBOOTSTRAPSCRIPT" ) ; then +if ! ( cd "$BUILDPLACE" && debootstrap "${DEBOOTSTRAPOPTS[@]}" "$DISTRIBUTION" . "$MIRRORSITE" "$DEBOOTSTRAPSCRIPT" ) ; then echo "pbuilder: debootstrap failed" >&2 exit 1 fi |