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
1 changed files with 1 additions and 1 deletions

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;