fix a prereq bug

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8183 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Felix Fietkau
2007-07-26 16:14:14 +00:00
parent b78269d614
commit ac8a4fb075

View File

@@ -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;