diff options
author | Ralph Hempel <ralph.hempel@lantiq.com> | 2009-03-01 09:35:53 +0000 |
---|---|---|
committer | Ralph Hempel <ralph.hempel@lantiq.com> | 2009-03-01 09:35:53 +0000 |
commit | 6ae7a0f94fda9b24e0e1ad8be517fc764f03e5d7 (patch) | |
tree | 85d8c9d28f6bd61b129c46cd7efedd8903f587ac /scripts/metadata.pm | |
parent | 1ca2da992f03c0e5245b830aa7f7f1813981b0f8 (diff) | |
download | upstream-6ae7a0f94fda9b24e0e1ad8be517fc764f03e5d7.tar.gz upstream-6ae7a0f94fda9b24e0e1ad8be517fc764f03e5d7.tar.bz2 upstream-6ae7a0f94fda9b24e0e1ad8be517fc764f03e5d7.zip |
added source distribution to package dump, used by our SDK (include source distributions for offline usage) added bugfix for sub-targets added bugfix for help info (thanks to Thomas)
SVN-Revision: 14703
Diffstat (limited to 'scripts/metadata.pm')
-rw-r--r-- | scripts/metadata.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/metadata.pm b/scripts/metadata.pm index 9486c66cb3..97746809a4 100644 --- a/scripts/metadata.pm +++ b/scripts/metadata.pm @@ -73,6 +73,7 @@ sub parse_package_metadata($) { /^Menu: \s*(.+)\s*$/ and $pkg->{menu} = $1; /^Submenu: \s*(.+)\s*$/ and $pkg->{submenu} = $1; /^Submenu-Depends: \s*(.+)\s*$/ and $pkg->{submenudep} = $1; + /^Source: \s*(.+)\s*$/ and $pkg->{source} = $1; /^Default: \s*(.+)\s*$/ and $pkg->{default} = $1; /^Provides: \s*(.+)\s*$/ and do { my @vpkg = split /\s+/, $1; |