aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfuzzyray <fuzzyray@gentoo.org>2009-04-25 04:16:20 +0000
committerfuzzyray <fuzzyray@gentoo.org>2009-04-25 04:16:20 +0000
commita2db7495f0d8460bdceebe5d672da7044da26144 (patch)
treea5189d95929ecfc1042f86c28e2c6774dc6e5802
parentFix ekeyword to handle multiline KEYWORDS (diff)
downloadgentoolkit-a2db7495f0d8460bdceebe5d672da7044da26144.tar.gz
gentoolkit-a2db7495f0d8460bdceebe5d672da7044da26144.tar.bz2
gentoolkit-a2db7495f0d8460bdceebe5d672da7044da26144.zip
Fix bug with multiline KEYWORDS processing
svn path=/; revision=550
-rwxr-xr-xtrunk/src/ekeyword/ekeyword2
1 files changed, 1 insertions, 1 deletions
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 = <I>;
- $_ = join "", $_, $next;
+ $_ = join " ", $_, $next;
}
(my $quoted = $_) =~ s/^.*?["'](.*?)["'].*/$1/s;