From: Felix Fietkau Date: Fri, 2 Oct 2009 22:02:31 +0000 (+0000) Subject: metadata.pl: do not strip whitespaces from multiline data X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=7bd8115c7e653e6b6ed40f87bdcf67056803480a;p=openwrt%2Fstaging%2Fflorian.git metadata.pl: do not strip whitespaces from multiline data SVN-Revision: 17827 --- diff --git a/scripts/metadata.pm b/scripts/metadata.pm index 65ba0b890d..dd62b4c04a 100644 --- a/scripts/metadata.pm +++ b/scripts/metadata.pm @@ -16,7 +16,6 @@ sub get_multiline { my $str; while (<$fh>) { last if /^@@/; - s/^\s*//g; $str .= (($_ and $prefix) ? $prefix . $_ : $_); }