From a0b2720c32b3213188962b76eb83ea5d54e6cb7c Mon Sep 17 00:00:00 2001 From: Andreas Henriksson Date: Thu, 18 Jun 2015 12:42:15 +0200 Subject: Fix DEB_BUILD_PROFILES quoting Thanks: Michael Stapelberg for spotting this --- pbuilder-satisfydepends-aptitude | 4 ++-- 1 file 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" -- cgit v1.2.3