summaryrefslogtreecommitdiff
path: root/openwrt/scripts
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-06-20 17:54:30 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-06-20 17:54:30 +0000
commitea435239915386927dc9c6e8d9200ce70e9aa89b (patch)
tree507c83f66f979c61f415c76cc534790b95a43346 /openwrt/scripts
parent879a46444f578f52b61ad80bd2bfa329675d9962 (diff)
downloadmtk-20170518-ea435239915386927dc9c6e8d9200ce70e9aa89b.zip
mtk-20170518-ea435239915386927dc9c6e8d9200ce70e9aa89b.tar.gz
mtk-20170518-ea435239915386927dc9c6e8d9200ce70e9aa89b.tar.bz2
more dependency fixes
SVN-Revision: 4024
Diffstat (limited to 'openwrt/scripts')
-rwxr-xr-xopenwrt/scripts/gen_deps.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/scripts/gen_deps.pl b/openwrt/scripts/gen_deps.pl
index 0983186..de8572c 100755
--- a/openwrt/scripts/gen_deps.pl
+++ b/openwrt/scripts/gen_deps.pl
@@ -22,7 +22,7 @@ while ($line = <>) {
$line =~ /^(Build-)?Depends: \s*(.+)\s*$/ and do {
$pkg{$name}->{depends} ||= [];
foreach my $v (split /\s+/, $2) {
- next if $v =~ /^@/;
+ next if $v =~ /^[\+]?@/;
$v =~ s/^\+//;
push @{$pkg{$name}->{depends}}, $v;
}