1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-04 22:24:32 +03:00

fix a prereq bug

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8183 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-07-26 16:14:14 +00:00
parent 8a854beb05
commit 2e57c3227c

View File

@ -556,7 +556,7 @@ sub gen_package_mk() {
} }
if ($config) { if ($config) {
print "package-$config += $pkg->{subdir}$pkg->{src}\n"; print "package-$config += $pkg->{subdir}$pkg->{src}\n";
$pkg->{prereq} and print "prereq-$config += $pkg->{src}\n"; $pkg->{prereq} and print "prereq-$config += $pkg->{subdir}$pkg->{src}\n";
} }
my $hasdeps = 0; my $hasdeps = 0;