* [Buildroot] [buildroot-test] [PATCH] autbuild-run: fix legal-info
@ 2015-04-06 21:02 Yann E. MORIN
2015-04-06 21:21 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: Yann E. MORIN @ 2015-04-06 21:02 UTC (permalink / raw)
To: buildroot
Currently, running legal-info is broken, as it only runs a plain 'make',
which does not do much...
Fix that by explicitly pass 'legal-info' as the make target. Also, we
need to specify the download dir, to avoid using the default one (which
does not exist) or a user-defined one (in the environment).
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
scripts/autobuild-run | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/scripts/autobuild-run b/scripts/autobuild-run
index 409570d..0e12080 100755
--- a/scripts/autobuild-run
+++ b/scripts/autobuild-run
@@ -560,7 +560,10 @@ def do_build(**kwargs):
if ret != 0:
log_write(log, "INFO: build failed")
return -1
- ret = subprocess.call(["make", "O=%s" % outputdir, "-C", srcdir], stdout=f, stderr=f)
+ cmd = ["make", "O=%s" % outputdir, "-C", srcdir,
+ "BR2_DL_DIR=%s" % dldir, "legal-info"] \
+ + kwargs['make_opts'].split()
+ ret = subprocess.call(cmd, stdout=f, stderr=f)
if ret != 0:
log_write(log, "INFO: build failed during legal-info")
return -1
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [buildroot-test] [PATCH] autbuild-run: fix legal-info
2015-04-06 21:02 [Buildroot] [buildroot-test] [PATCH] autbuild-run: fix legal-info Yann E. MORIN
@ 2015-04-06 21:21 ` Thomas Petazzoni
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2015-04-06 21:21 UTC (permalink / raw)
To: buildroot
Dear Yann E. MORIN,
On Mon, 6 Apr 2015 23:02:49 +0200, Yann E. MORIN wrote:
> Currently, running legal-info is broken, as it only runs a plain 'make',
> which does not do much...
>
> Fix that by explicitly pass 'legal-info' as the make target. Also, we
> need to specify the download dir, to avoid using the default one (which
> does not exist) or a user-defined one (in the environment).
>
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Applied, thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-04-06 21:21 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-06 21:02 [Buildroot] [buildroot-test] [PATCH] autbuild-run: fix legal-info Yann E. MORIN
2015-04-06 21:21 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox