diff options
author | dancer <dancer> | 2002-10-30 05:45:30 +0000 |
---|---|---|
committer | dancer <dancer> | 2002-10-30 05:45:30 +0000 |
commit | d2253141addb9872477a6925e7079b16d32e54f5 (patch) | |
tree | 7cf64b8b03d32b6540ef0404db082779edf1a585 /pbuilder-satisfydepends | |
parent | e305368d7721aa40e04ae970ad9820fb29512f76 (diff) | |
download | pbuilder-d2253141addb9872477a6925e7079b16d32e54f5.tar pbuilder-d2253141addb9872477a6925e7079b16d32e54f5.tar.gz |
+ * pbuilder-satisfydepends: make CHROOTEXEC invocation to make
+ it less ambiguous, for versiondeps.
Diffstat (limited to 'pbuilder-satisfydepends')
-rw-r--r-- | pbuilder-satisfydepends | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbuilder-satisfydepends b/pbuilder-satisfydepends index a987bcc..7de51d4 100644 --- a/pbuilder-satisfydepends +++ b/pbuilder-satisfydepends @@ -25,7 +25,7 @@ function checkbuilddep_versiondeps () { local COMPARESTRING="$2" local DEPSVERSION="$3" $CHROOTEXEC /usr/bin/apt-cache show "$PACKAGE" - local PACKAGEVERSIONS=$($CHROOTEXEC /usr/bin/apt-cache show "$PACKAGE" | sed -n 's/^Version: \(.*\)$/\1/p' | xargs) + local PACKAGEVERSIONS=$( ( $CHROOTEXEC /usr/bin/apt-cache show "$PACKAGE" ) | sed -n 's/^Version: \(.*\)$/\1/p' | xargs) # no versioned provides. if [ "${FORCEVERSION}" = "yes" ]; then return 0; |