metadata.pl: do not strip whitespaces from multiline data

SVN-Revision: 17827
This commit is contained in:
Felix Fietkau 2009-10-02 22:02:31 +00:00
parent abffbb5da7
commit 7bd8115c7e
1 changed files with 0 additions and 1 deletions

View File

@ -16,7 +16,6 @@ sub get_multiline {
my $str;
while (<$fh>) {
last if /^@@/;
s/^\s*//g;
$str .= (($_ and $prefix) ? $prefix . $_ : $_);
}