diff options
author | Junichi Uekawa <dancer@coreduo.netfort.gr.jp> | 2008-01-04 09:25:32 +0900 |
---|---|---|
committer | Junichi Uekawa <dancer@coreduo.netfort.gr.jp> | 2008-01-04 09:25:32 +0900 |
commit | 3b1e38a6d2d68debc8935e510b06f78cb018502f (patch) | |
tree | 9993dbbf615de30cabf646e294c8f7db38c0264c /pbuilder-buildpackage-funcs | |
parent | 58612382530af7d22160e73d4231e9c511f40b3c (diff) | |
download | pbuilder-3b1e38a6d2d68debc8935e510b06f78cb018502f.tar pbuilder-3b1e38a6d2d68debc8935e510b06f78cb018502f.tar.gz |
satisfydepends-gdebi: reorganize code to go in-line with other funcs.
The original implementation did not work well with cowdancer, change
it so that gdebi is called inside chroot and inside chroot only.
This has the drawback that gdebi must be available within chroot, but
it is much simpler than adding conditional cowdancer support to gdebi, and hopefully better for future development.
Diffstat (limited to 'pbuilder-buildpackage-funcs')
-rw-r--r-- | pbuilder-buildpackage-funcs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbuilder-buildpackage-funcs b/pbuilder-buildpackage-funcs index 5cdbe40..a36fcb4 100644 --- a/pbuilder-buildpackage-funcs +++ b/pbuilder-buildpackage-funcs @@ -37,7 +37,7 @@ function checkbuilddep () { yes) BUILDOPT="--binary-arch";; *) ;; esac - if "$PBUILDERSATISFYDEPENDSCMD" --control "$1" --chroot "${BUILDPLACE}" --internal-chrootexec "${CHROOTEXEC}" "${BUILDOPT}" ; then + if "$PBUILDERSATISFYDEPENDSCMD" --control "$1" --internal-chrootexec "${CHROOTEXEC}" "${BUILDOPT}" ; then : else # If asked to preserve the build place, and pbuilder-satisfydepends |