Kaydet (Commit) 824520b5 authored tarafından David Tardon's avatar David Tardon

run make from top directory

Change-Id: If93cca6d8e12baae3369bcba62287d96072f1c93
üst ff338fac
...@@ -1844,8 +1844,12 @@ sub run_job { ...@@ -1844,8 +1844,12 @@ sub run_job {
#gbuild_target = $ENV{gb_TAILBUILDTARGET}; #gbuild_target = $ENV{gb_TAILBUILDTARGET};
} }
$gbuild_flags .= ' ' . $ENV{GMAKE_OPTIONS}; $gbuild_flags .= ' ' . $ENV{GMAKE_OPTIONS};
$job_to_do = "make -f ../Makefile $gbuild_flags $gbuild_target"; $job_to_do = "make -f Makefile $gbuild_flags $gbuild_target";
print "gbuild module $registered_name: $job_to_do\n"; my $make_path = $path;
$make_path =~ s!/prj$!!;
chdir $make_path;
getcwd();
print "gbuild module $make_path: $job_to_do\n";
} }
} }
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment