1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-11-29 10:24:12 +01:00

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

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