summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-06-21 02:45:02 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-06-21 02:45:02 +0000
commit211af51534060df7e58158037a6ff701f44f780e (patch)
tree44b67b6cb3f7bf4d265881a24ec4eaf10475288b /scripts
parent0b0afa4d818ec18187b09055fbb8d84a01590d6e (diff)
add sdk option for gen_deps.pl
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4034 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen_deps.pl14
1 files changed, 13 insertions, 1 deletions
diff --git a/scripts/gen_deps.pl b/scripts/gen_deps.pl
index de8572c76..32bf1f5df 100755
--- a/scripts/gen_deps.pl
+++ b/scripts/gen_deps.pl
@@ -4,8 +4,15 @@ use strict;
my $name;
my $src;
my $makefile;
+my %conf;
my %pkg;
my %dep;
+my %options;
+my $opt;
+
+while ($opt = shift @ARGV) {
+ $opt =~ /^-s/ and $options{SDK} = 1;
+}
my $line;
while ($line = <>) {
@@ -32,7 +39,12 @@ while ($line = <>) {
$line="";
foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) {
- print "package-\$(CONFIG_PACKAGE_$name) += $pkg{$name}->{src}\n";
+ if ($options{SDK}) {
+ $conf{$pkg{$name}->{src}} or print "package-m += $pkg{$name}->{src}\n";
+ $conf{$pkg{$name}->{src}} = 1;
+ } else {
+ print "package-\$(CONFIG_PACKAGE_$name) += $pkg{$name}->{src}\n";
+ }
my $hasdeps = 0;
my $depline = "";