diff options
author | Loïc Minier <lool@dooz.org> | 2010-01-05 10:49:01 +0100 |
---|---|---|
committer | Loïc Minier <lool@dooz.org> | 2010-01-05 10:49:01 +0100 |
commit | e9b9af550004daf7837a9009cd05dbab51a85509 (patch) | |
tree | 8b758baf79e01c3f6af39423aff17e6e3368be87 /pbuilder-satisfydepends-classic | |
parent | c4933629883a8e4118f2b370cc549b404c98e2cf (diff) | |
download | pbuilder-e9b9af550004daf7837a9009cd05dbab51a85509.tar pbuilder-e9b9af550004daf7837a9009cd05dbab51a85509.tar.gz |
Make satisfydepends-aptitude, -classic relocatable
Make pbuilder-satisfydepends-aptitude and -classic relocatable.
Diffstat (limited to 'pbuilder-satisfydepends-classic')
-rwxr-xr-x | pbuilder-satisfydepends-classic | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pbuilder-satisfydepends-classic b/pbuilder-satisfydepends-classic index f15af79..79a4bc9 100755 --- a/pbuilder-satisfydepends-classic +++ b/pbuilder-satisfydepends-classic @@ -22,7 +22,9 @@ set -e -. /usr/lib/pbuilder/pbuilder-satisfydepends-funcs +export PBUILDER_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" + +. "$PBUILDER_PKGLIBDIR"/pbuilder-satisfydepends-funcs function checkbuilddep_internal () { # Use this function to fulfill the dependency (almost) @@ -168,5 +170,5 @@ Copyright 2002-2007 Junichi Uekawa <dancer@debian.org> EOF } -. /usr/lib/pbuilder/pbuilder-satisfydepends-checkparams +. "$PBUILDER_PKGLIBDIR"/pbuilder-satisfydepends-checkparams |