projects
/
openwrt
/
staging
/
florian.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b7ebb19
)
scripts/metadata.pm: save target makefile names
author
Felix Fietkau
<
[email protected]
>
Sun, 15 Mar 2015 11:08:01 +0000
(11:08 +0000)
committer
Felix Fietkau
<
[email protected]
>
Sun, 15 Mar 2015 11:08:01 +0000
(11:08 +0000)
Signed-off-by: Felix Fietkau <
[email protected]
>
SVN-Revision: 44780
scripts/metadata.pm
patch
|
blob
|
history
diff --git
a/scripts/metadata.pm
b/scripts/metadata.pm
index aa82fcd95d3189f871b87f71143557e90181487a..09273df3ad543e2001c392d26144637f72a6fa8b 100644
(file)
--- 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 (<FILE>) {
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 => [],