diff options
author | dancer <dancer> | 2002-10-29 13:46:23 +0000 |
---|---|---|
committer | dancer <dancer> | 2002-10-29 13:46:23 +0000 |
commit | 8ef77416c569818b4529939f20f2f03561b878e3 (patch) | |
tree | c3c3db69b5be34f3f349510943392b1cb23a0673 /pbuilder-satisfydepends | |
parent | c108f0386206414791b9e9239daa6754dfc9c148 (diff) | |
download | pbuilder-8ef77416c569818b4529939f20f2f03561b878e3.tar pbuilder-8ef77416c569818b4529939f20f2f03561b878e3.tar.gz |
+ * pbuilder-buildpackage-funcs: unset LOGNAME
+
Diffstat (limited to 'pbuilder-satisfydepends')
-rw-r--r-- | pbuilder-satisfydepends | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pbuilder-satisfydepends b/pbuilder-satisfydepends index a299f30..a987bcc 100644 --- a/pbuilder-satisfydepends +++ b/pbuilder-satisfydepends @@ -24,7 +24,8 @@ function checkbuilddep_versiondeps () { local PACKAGE="$1" local COMPARESTRING="$2" local DEPSVERSION="$3" - local PACKAGEVERSIONS="$($CHROOTEXEC /usr/bin/apt-cache show $PACKAGE | sed -n 's/^Version: \(.*\)$/\1/p' | xargs)" + $CHROOTEXEC /usr/bin/apt-cache show "$PACKAGE" + 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; |