From 033cba6bd96d89685c36229ccd5dfef32ba5b592 Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Mon, 22 Oct 2007 17:47:05 +0000 Subject: [PATCH] On Linux, explicitly pointing to included avrdude (instead of just using the path). --- app/Uploader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Uploader.java b/app/Uploader.java index f200005b9..f71cc26e0 100755 --- a/app/Uploader.java +++ b/app/Uploader.java @@ -106,7 +106,7 @@ public abstract class Uploader implements MessageConsumer { avrBasePath = new String("hardware/tools/avr/bin/"); } else if(Base.isLinux()) { - avrBasePath = new String(""); + avrBasePath = new String("hardware/tools/"); } else { avrBasePath = new String(userdir + "hardware/tools/avr/bin/");