From: fuzzyray Date: Sat, 25 Apr 2009 04:16:20 +0000 (-0000) Subject: Fix bug with multiline KEYWORDS processing X-Git-Tag: gentoolkit-0.2.4.3^2~6 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a2db7495f0d8460bdceebe5d672da7044da26144;p=gentoolkit.git Fix bug with multiline KEYWORDS processing svn path=/; revision=550 --- diff --git a/trunk/src/ekeyword/ekeyword b/trunk/src/ekeyword/ekeyword index dd6a573..2e49ac0 100755 --- a/trunk/src/ekeyword/ekeyword +++ b/trunk/src/ekeyword/ekeyword @@ -47,7 +47,7 @@ for my $f (@ARGV) { while (not /^KEYWORDS=["'].*?["']/) { chomp; my $next = ; - $_ = join "", $_, $next; + $_ = join " ", $_, $next; } (my $quoted = $_) =~ s/^.*?["'](.*?)["'].*/$1/s;