metadata.pl: do not strip whitespaces from multiline data

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17827 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2009-10-02 22:02:31 +00:00
parent ecfdcd7b17
commit 53ebb11eaf

View file

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