summaryrefslogtreecommitdiff
path: root/localdebpool
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2010-06-26 19:48:10 +0200
committerJonas Smedegaard <dr@jones.dk>2010-06-26 19:48:10 +0200
commit71ebf37d868d8f2408236b4cf7e196e43ef85143 (patch)
treeb4f00cd0e0b97cb1ac7ba9d7f2595043da0fdb79 /localdebpool
parentd50edb8d7bc4d5d34b93f6228f33b0d0b69a5f17 (diff)
Fix support packages containing "+".
Diffstat (limited to 'localdebpool')
-rwxr-xr-xlocaldebpool2
1 files changed, 1 insertions, 1 deletions
diff --git a/localdebpool b/localdebpool
index 2820662..19ff736 100755
--- a/localdebpool
+++ b/localdebpool
@@ -184,7 +184,7 @@ debugprint "Sections in batch: \"$batchsections\""
batchsections_re=
if [ -n "$batchsections" ]; then
- batchsections_re="\b$(regexfromlist $batchsections)\b"
+ batchsections_re="\b$(regexfromlist ${batchsections/+/\\\\+})\b"
else
echo 1>&2 "ERROR: Package(s) $@ was not found in any section."
exit 1