On Linux, explicitly pointing to included avrdude (instead of just using the path).

This commit is contained in:
David A. Mellis 2007-10-22 17:47:05 +00:00
parent 08553c31d1
commit 033cba6bd9
1 changed files with 1 additions and 1 deletions

View File

@ -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/");