projects
/
openwrt
/
staging
/
lynxis.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
abffbb5
)
metadata.pl: do not strip whitespaces from multiline data
author
Felix Fietkau
<nbd@openwrt.org>
Fri, 2 Oct 2009 22:02:31 +0000
(22:02 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Fri, 2 Oct 2009 22:02:31 +0000
(22:02 +0000)
SVN-Revision: 17827
scripts/metadata.pm
patch
|
blob
|
history
diff --git
a/scripts/metadata.pm
b/scripts/metadata.pm
index 65ba0b890d05e8834cc1c9af205a4fec9585ec1e..dd62b4c04abfe8957f2077bf99b9a56d6e1139b3 100644
(file)
--- 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 . $_ : $_);
}