aboutsummaryrefslogtreecommitdiff
path: root/pbuilder-satisfydepends-aptitude
diff options
context:
space:
mode:
authorAndreas Henriksson <andreas@fatal.se>2015-06-18 12:42:15 +0200
committerAndreas Henriksson <andreas.henriksson@endian.se>2015-06-22 10:06:00 +0200
commita0b2720c32b3213188962b76eb83ea5d54e6cb7c (patch)
tree05da611eb1a5bc073ff96df91422f13c8d6a5a26 /pbuilder-satisfydepends-aptitude
parent19152b3f7db286f75de1b551010eb472260e0749 (diff)
downloadpbuilder-a0b2720c32b3213188962b76eb83ea5d54e6cb7c.tar
pbuilder-a0b2720c32b3213188962b76eb83ea5d54e6cb7c.tar.gz
Fix DEB_BUILD_PROFILES quoting
Thanks: Michael Stapelberg for spotting this
Diffstat (limited to 'pbuilder-satisfydepends-aptitude')
-rwxr-xr-xpbuilder-satisfydepends-aptitude4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbuilder-satisfydepends-aptitude b/pbuilder-satisfydepends-aptitude
index f96486e..ea24efc 100755
--- a/pbuilder-satisfydepends-aptitude
+++ b/pbuilder-satisfydepends-aptitude
@@ -34,9 +34,9 @@ function checkbuilddep_internal () {
local CONFLICTS
echo " -> Attempting to satisfy build-dependencies"
DEPENDS="$(get_build_deps | filter_arch_deps "$ARCH" |
- filter_restriction_deps \"$DEB_BUILD_PROFILES\" )"
+ filter_restriction_deps "$DEB_BUILD_PROFILES" )"
CONFLICTS="$(get_build_conflicts | filter_arch_deps "$ARCH" |
- filter_restriction_deps \"$DEB_BUILD_PROFILES\" )"
+ filter_restriction_deps "$DEB_BUILD_PROFILES" )"
echo " -> Creating pbuilder-satisfydepends-dummy package"
BUILD_DEP_DEB_DIR="/tmp/satisfydepends-aptitude"
BUILD_DEP_DEB_CONTROL="$BUILD_DEP_DEB_DIR/pbuilder-satisfydepends-dummy/DEBIAN/control"