1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-01 00:21:51 +02:00

fix a prereq bug

SVN-Revision: 8183
This commit is contained in:
Felix Fietkau 2007-07-26 16:14:14 +00:00
parent 0fc8be8ade
commit 1a12e151ee

@ -556,7 +556,7 @@ sub gen_package_mk() {
}
if ($config) {
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;