The following commit has been merged in the master branch:
commit 4c71dbe118703d32f5e4a4e21d8c24fea28646e9
Author: Ole Streicher <[email protected]>
Date: Thu Nov 10 22:35:51 2016 +0100
Remove backslashes from RFC834 continuation lines
diff --git a/devtools/blend-gen-control b/devtools/blend-gen-control
index 1b4298d..4cb8bdf 100755
--- a/devtools/blend-gen-control
+++ b/devtools/blend-gen-control
@@ -567,10 +567,12 @@ sub load_task {
for $header (qw(Depends Recommends Suggests)) {
if (m/^$header:\s+(.+)$/ && $1 !~ /^\s*$/) {
my $pkgs = $1;
+ $pkgs =~ s/\s*\\//;
while (<TASKFILE>) {
last if (m/^\S+/ || m/^\s*$/);
+ chop $_;
+ $_ =~ s/\s*\\//;
$pkgs .= $_;
- chomp $pkgs;
}
$taskinfo{$curpkg}{$header} = ()
if (! exists $taskinfo{$curpkg}{$header});
--
Git repository for blends code
_______________________________________________
Blends-commit mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/blends-commit