X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=scripts%2Fmetadata.pm;h=09273df3ad543e2001c392d26144637f72a6fa8b;hb=63ef3540d1d5655b16098d63726595fda4dae392;hp=aa82fcd95d3189f871b87f71143557e90181487a;hpb=acb43b3df75642955fceb58feea24a5046ce318c;p=oweals%2Fopenwrt.git diff --git a/scripts/metadata.pm b/scripts/metadata.pm index aa82fcd95d..09273df3ad 100644 --- a/scripts/metadata.pm +++ b/scripts/metadata.pm @@ -34,6 +34,7 @@ sub parse_target_metadata($) { my $file = shift; my ($target, @target, $profile); my %target; + my $makefile; open FILE, "<$file" or do { warn "Can't open file '$file': $!\n"; @@ -41,11 +42,13 @@ sub parse_target_metadata($) { }; while () { chomp; + /^Source-Makefile: \s*((.+\/)([^\/]+)\/Makefile)\s*$/ and $makefile = $1; /^Target:\s*(.+)\s*$/ and do { my $name = $1; $target = { id => $name, board => $name, + makefile => $makefile, boardconf => confstr($name), conf => confstr($name), profiles => [],