diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-10-31 23:27:55 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-10-31 23:27:55 +0000 |
commit | 772c6488da203a2d3af523cc3b4a2378a2a1ae12 (patch) | |
tree | de35d5bef94085cb6944c0b3e4e70a0e921f5ff4 /scripts | |
parent | e66a2110787bf8e805bce404ef317c52d78d0a86 (diff) | |
download | upstream-772c6488da203a2d3af523cc3b4a2378a2a1ae12.tar.gz upstream-772c6488da203a2d3af523cc3b4a2378a2a1ae12.tar.bz2 upstream-772c6488da203a2d3af523cc3b4a2378a2a1ae12.zip |
indent custom package config code
SVN-Revision: 9472
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/metadata.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/metadata.pm b/scripts/metadata.pm index ff39e346ea..917fbec079 100644 --- a/scripts/metadata.pm +++ b/scripts/metadata.pm @@ -96,7 +96,7 @@ sub parse_package_metadata($) { $type =~ /ipkg/ and $pkg->{tristate} = 1; } }; - /^Config: \s*(.*)\s*$/ and $pkg->{config} = "$1\n".get_multiline(*FILE); + /^Config: \s*(.*)\s*$/ and $pkg->{config} = "$1\n".get_multiline(*FILE, "\t"); /^Prereq-Check:/ and $pkg->{prereq} = 1; /^Preconfig:\s*(.+)\s*$/ and do { my $pkgname = $pkg->{name}; |