diff options
author | Andreas Henriksson <andreas@fatal.se> | 2015-06-18 12:42:15 +0200 |
---|---|---|
committer | Andreas Henriksson <andreas.henriksson@endian.se> | 2015-06-22 10:06:00 +0200 |
commit | a0b2720c32b3213188962b76eb83ea5d54e6cb7c (patch) | |
tree | 05da611eb1a5bc073ff96df91422f13c8d6a5a26 /pbuilder-satisfydepends-aptitude | |
parent | 19152b3f7db286f75de1b551010eb472260e0749 (diff) | |
download | pbuilder-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-x | pbuilder-satisfydepends-aptitude | 4 |
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" |