Point at my copy of make.exe so we don't have to ftp equation.org.
authorDoug Schaefer <dschaefer@qnx.com>
Sat, 12 Sep 2015 02:58:41 +0000 (22:58 -0400)
committerDoug Schaefer <dschaefer@qnx.com>
Sat, 12 Sep 2015 02:58:41 +0000 (22:58 -0400)
Change-Id: Idf22a2eda8112550e5aa4172eae5d0fa49c9c1c2

toolchains/arduino/org.eclipse.cdt.arduino.core/src/org/eclipse/cdt/arduino/core/internal/board/ArduinoPlatform.java

index 8952d6b..903933b 100644 (file)
@@ -245,13 +245,13 @@ public class ArduinoPlatform {
                        }
                }
 
-               // On Windows install make from equations.org
+               // On Windows install make from bintray
                if (Platform.getOS().equals(Platform.OS_WIN32)) {
                        try {
                                Path makePath = ArduinoPreferences.getArduinoHome().resolve("tools/make/make.exe"); //$NON-NLS-1$
                                if (!makePath.toFile().exists()) {
                                        Files.createDirectories(makePath.getParent());
-                                       URL makeUrl = new URL("ftp://ftp.equation.com/make/32/make.exe"); //$NON-NLS-1$
+                                       URL makeUrl = new URL("https://bintray.com/artifact/download/cdtdoug/tools/make.exe"); //$NON-NLS-1$
                                        Files.copy(makeUrl.openStream(), makePath);
                                        makePath.toFile().setExecutable(true, false);
                                }