diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-09-29 01:21:56 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-09-29 01:21:56 +0000 |
commit | 3eda02f389438652720d82e60392028d43478e8d (patch) | |
tree | f98e2082480fdb704253335dac8fd6d0b7376559 /scripts/metadata.pl | |
parent | ccff8348deb578ad232ea0c7fc6ae92e8d22f2de (diff) | |
download | upstream-3eda02f389438652720d82e60392028d43478e8d.tar.gz upstream-3eda02f389438652720d82e60392028d43478e8d.tar.bz2 upstream-3eda02f389438652720d82e60392028d43478e8d.zip |
add a packaging method that installs files into a subdirectory of bin/ instead of an ipkg
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9060 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts/metadata.pl')
-rwxr-xr-x | scripts/metadata.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl index f3d6e9df2c..aa5df6fb9d 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -361,7 +361,7 @@ sub print_package_config_category($) { print "\t"; $pkg->{menu} and print "menu"; print "config PACKAGE_".$pkg->{name}."\n"; - print "\t\ttristate \"$title\"\n"; + print "\t\t".($pkg->{tristate} ? 'tristate' : 'bool')." \"$title\"\n"; print "\t\tdefault y if DEFAULT_".$pkg->{name}."\n"; foreach my $default (split /\s*,\s*/, $pkg->{default}) { print "\t\tdefault $default\n"; |