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 | 97b61354626866dd2483c2a283ab9b2bc087ac74 (patch) | |
tree | 4ca23a9af854189fb18b7e81268a7c0089890335 /scripts/metadata.pl | |
parent | 03543ec4a4ee24df583843d386a7a39372865961 (diff) | |
download | upstream-97b61354626866dd2483c2a283ab9b2bc087ac74.tar.gz upstream-97b61354626866dd2483c2a283ab9b2bc087ac74.tar.bz2 upstream-97b61354626866dd2483c2a283ab9b2bc087ac74.zip |
add a packaging method that installs files into a subdirectory of bin/ instead of an ipkg
SVN-Revision: 9060
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"; |