All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] autobuild-run: SystemInfo: fix s/java/javac/ typo
@ 2014-09-08 21:17 Peter Korsgaard
  2014-09-08 21:50 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Korsgaard @ 2014-09-08 21:17 UTC (permalink / raw)
  To: buildroot

Otherwise it fails on machines without javac

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 scripts/autobuild-run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/autobuild-run b/scripts/autobuild-run
index 496f941..accccef 100755
--- a/scripts/autobuild-run
+++ b/scripts/autobuild-run
@@ -115,7 +115,7 @@ class SystemInfo:
                                stdout=devnull, stderr=devnull) == 1:
                 self.has_java = True
 
-        self.has_java = False
+        self.has_javac = False
         if subprocess.call(["which", "javac"], stdout=devnull, stderr=devnull) == 0:
             if subprocess.call("javac -version | grep gcj", shell=True,
                                stdout=devnull, stderr=devnull) == 1:
-- 
2.0.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Buildroot] [PATCH] autobuild-run: SystemInfo: fix s/java/javac/ typo
  2014-09-08 21:17 [Buildroot] [PATCH] autobuild-run: SystemInfo: fix s/java/javac/ typo Peter Korsgaard
@ 2014-09-08 21:50 ` Thomas Petazzoni
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2014-09-08 21:50 UTC (permalink / raw)
  To: buildroot

Dear Peter Korsgaard,

On Mon,  8 Sep 2014 23:17:25 +0200, Peter Korsgaard wrote:
> Otherwise it fails on machines without javac
> 
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
>  scripts/autobuild-run | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

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:[~2014-09-08 21:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-08 21:17 [Buildroot] [PATCH] autobuild-run: SystemInfo: fix s/java/javac/ typo Peter Korsgaard
2014-09-08 21:50 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.