projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
update spca5xx, old version is no longer on the website
[openwrt.git]
/
scripts
/
gen_deps.pl
diff --git
a/scripts/gen_deps.pl
b/scripts/gen_deps.pl
index
de8572c
..
0cdcc97
100755
(executable)
--- a/
scripts/gen_deps.pl
+++ b/
scripts/gen_deps.pl
@@
-1,11
+1,25
@@
#!/usr/bin/perl
#!/usr/bin/perl
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
use strict;
my $name;
my $src;
my $makefile;
use strict;
my $name;
my $src;
my $makefile;
+my %conf;
my %pkg;
my %dep;
my %pkg;
my %dep;
+my %options;
+my $opt;
+
+while ($opt = shift @ARGV) {
+ $opt =~ /^-s/ and $options{SDK} = 1;
+}
my $line;
while ($line = <>) {
my $line;
while ($line = <>) {
@@
-32,7
+46,12
@@
while ($line = <>) {
$line="";
foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) {
$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 = "";
my $hasdeps = 0;
my $depline = "";
@@
-40,7
+59,7
@@
foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) {
my $idx;
if (defined $pkg{$dep}->{src}) {
($pkg{$name}->{src} ne $pkg{$dep}->{src}) and $idx = $pkg{$dep}->{src};
my $idx;
if (defined $pkg{$dep}->{src}) {
($pkg{$name}->{src} ne $pkg{$dep}->{src}) and $idx = $pkg{$dep}->{src};
- } elsif (defined
$pkg{$dep
}) {
+ } elsif (defined
($pkg{$dep}) && !$options{SDK
}) {
$idx = $dep;
}
if ($idx) {
$idx = $dep;
}
if ($idx) {
This page took
0.02121 seconds
and
4
git commands to generate.