Browse Source

fix a prereq bug

SVN-Revision: 8183
Felix Fietkau 18 years ago
parent
commit
1a12e151ee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/metadata.pl

+ 1 - 1
scripts/metadata.pl

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