From: Mike Baker Date: Sun, 14 May 2006 12:30:52 +0000 (+0000) Subject: change syntax X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e63936f36838ffae1b4c1c6c2723ed0913caccd1;p=librecmc%2Flibrecmc.git change syntax SVN-Revision: 3778 --- diff --git a/openwrt/scripts/gen_deps.pl b/openwrt/scripts/gen_deps.pl index d4b6c76d09..a910a9937b 100755 --- a/openwrt/scripts/gen_deps.pl +++ b/openwrt/scripts/gen_deps.pl @@ -25,10 +25,15 @@ while ($line = <>) { } foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) { - print "$name: "; + my $hasdeps = 0; + $line = "$pkg{$name}->{src}-compile:"; foreach my $dep (@{$pkg{$name}->{depends}}) { - print "$dep "; + if (defined $pkg{$dep}->{src} && $pkg{$name}->{src} ne $pkg{$dep}->{src}) { + $hasdeps = 1; + $line .= " $pkg{$dep}->{src}-compile"; + } + } + if ($hasdeps) { + print "$line\n"; } - print "\n\tmake -C ".$pkg{$name}->{src}."\n"; - print "\n"; }