diff options
author | lool <lool> | 2006-11-06 20:06:25 +0000 |
---|---|---|
committer | lool <lool> | 2006-11-06 20:06:25 +0000 |
commit | 8bc2c781cae56f1a6db134ded8a0c91416e7af00 (patch) | |
tree | 9791e1f01820b091cf801392cb8b348b219c1358 /pdebuild-internal | |
parent | 5cd019eee4bc08e518db2c90a856f60c0296e39f (diff) | |
download | pbuilder-8bc2c781cae56f1a6db134ded8a0c91416e7af00.tar pbuilder-8bc2c781cae56f1a6db134ded8a0c91416e7af00.tar.gz |
* debuild-pbuilder, pbuilder-buildpackage-funcs, pdebuild-internal:
use $PBUILDERSATISFYDEPENDSCMD instead of
/usr/lib/pbuilder/pbuilder-satisfydepends.
* pbuilderrc: set PBUILDERSATISFYDEPENDSCMD to
/usr/lib/pbuilder/pbuilder-satisfydepends by default.
* pbuilderrc.5: document PBUILDERSATISFYDEPENDSCMD.
* debian/TODO: alternatives implementation of pbuilder-satisfydepends
now possible.
* pdebuild-checkparams, pdebuild-uml-checkparams, pdebuild-internal:
add a new --pbuildersatisfydepends flag to override
PBUILDERSATISFYDEPENDSCMD
* pdebuild: pass --pbuildersatisfydepends to pdebuild-internal.
* pbuilder-modules, pdebuild.1: document --pbuildersatisfydepends.
Diffstat (limited to 'pdebuild-internal')
-rw-r--r-- | pdebuild-internal | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pdebuild-internal b/pdebuild-internal index 975b262..2f776ba 100644 --- a/pdebuild-internal +++ b/pdebuild-internal @@ -55,6 +55,10 @@ while [ -n "$1" ]; do BUILDRESULTGID=$2 shift; shift; ;; + --pbuildersatisfydepends) + PBUILDERSATISFYDEPENDSCMD=$2 + shift; shift; + ;; --debug) PBUILDER_DEBUGMODE=yes set -x @@ -71,7 +75,7 @@ while [ -n "$1" ]; do done export PBCURRENTCOMMANDLINEOPERATION="pdebuild" -/usr/lib/pbuilder/pbuilder-satisfydepends +"$PBUILDERSATISFYDEPENDSCMD" apt-get install -y --force-yes fakeroot # create the user similar to that used outside |