diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-05-30 17:09:21 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-05-30 17:09:21 +0000 |
commit | bd6b6a84e79481192a5f0ee150df2a12656746d4 (patch) | |
tree | 840ed863b031714b1fb2394fe276a92ef99fcac6 /scripts/gen_deps.pl | |
parent | 9140bea028fa72b8faec8cbd7bd238359889b217 (diff) | |
download | upstream-bd6b6a84e79481192a5f0ee150df2a12656746d4.tar.gz upstream-bd6b6a84e79481192a5f0ee150df2a12656746d4.tar.bz2 upstream-bd6b6a84e79481192a5f0ee150df2a12656746d4.zip |
add proper build depends
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3841 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts/gen_deps.pl')
-rwxr-xr-x | scripts/gen_deps.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gen_deps.pl b/scripts/gen_deps.pl index ef49fa3f41..40153bde3d 100755 --- a/scripts/gen_deps.pl +++ b/scripts/gen_deps.pl @@ -18,8 +18,8 @@ while ($line = <>) { defined $pkg{$name} or $pkg{$name} = {}; $pkg{$name}->{src} = $src; }; - $line =~ /^Depends: \s*(.+)\s*$/ and do { - my @dep = split /,\s*/, $1; + $line =~ /^(Build-)?Depends: \s*(.+)\s*$/ and do { + my @dep = split /,\s*/, $2; $pkg{$name}->{depends} = \@dep; }; } |