1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 11:29:48 +03:00

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; my $str;
while (<$fh>) { while (<$fh>) {
last if /^@@/; last if /^@@/;
s/^\s*//g;
$str .= (($_ and $prefix) ? $prefix . $_ : $_); $str .= (($_ and $prefix) ? $prefix . $_ : $_);
} }