summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-10-12 17:45:22 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-10-12 17:45:22 +0000
commit3dcabf1774447d7a2a0065c20f5dee5cf6c75c56 (patch)
tree1c7ea301a9b8c41b835699ff19ee80d058b23a61 /scripts
parent1dfa7e7abd9e62e098a802cac6b89d84607adfda (diff)
only check prerequisites of actually selected packages
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@5055 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen_deps.pl20
1 files changed, 13 insertions, 7 deletions
diff --git a/scripts/gen_deps.pl b/scripts/gen_deps.pl
index e7daf1886..745d31c7d 100755
--- a/scripts/gen_deps.pl
+++ b/scripts/gen_deps.pl
@@ -14,7 +14,6 @@ my $makefile;
my %conf;
my %pkg;
my %prereq;
-my $prereq;
my %dep;
my %options;
my $opt;
@@ -36,8 +35,7 @@ while ($line = <>) {
$pkg{$name}->{src} = $src;
};
$line =~ /^Prereq-Check:/ and !defined $prereq{$src} and do {
- $prereq{$src} = 1;
- $prereq .= "package-prereq += $src\n";
+ $pkg{$name}->{prereq} = 1;
};
$line =~ /^(Build-)?Depends: \s*(.+)\s*$/ and do {
$pkg{$name}->{depends} ||= [];
@@ -52,11 +50,19 @@ while ($line = <>) {
$line="";
foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) {
+ my $config;
+
if ($options{SDK}) {
- $conf{$pkg{$name}->{src}} or print "package-m += $pkg{$name}->{src}\n";
- $conf{$pkg{$name}->{src}} = 1;
+ $conf{$pkg{$name}->{src}} or do {
+ $config = 'm';
+ $conf{$pkg{$name}->{src}} = 1;
+ };
} else {
- print "package-\$(CONFIG_PACKAGE_$name) += $pkg{$name}->{src}\n";
+ $config = "\$(CONFIG_PACKAGE_$name)"
+ }
+ if ($config) {
+ print "package-$config += $pkg{$name}->{src}\n";
+ $pkg{$name}->{prereq} and print "prereq-$config += $pkg{$name}->{src}\n";
}
my $hasdeps = 0;
@@ -81,5 +87,5 @@ foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) {
}
if ($line ne "") {
- print "\n$line\n$prereq";
+ print "\n$line";
}