diff options
| author | stepcut <jeremy@n-heptane.com> | 2014-10-22 15:43:01 -0500 |
|---|---|---|
| committer | stepcut <jeremy@n-heptane.com> | 2014-10-22 15:43:01 -0500 |
| commit | f162d8fee325cd4c31f17d8b3bcc8670fd5004a4 (patch) | |
| tree | 9f34d7b1972f78d51e1f264ab08360afe4ac4826 | |
| parent | 1cddbfb2f4a27e3679c709a0229101ea254c213b (diff) | |
put ARDUINO_DIR block after Travis-CI block else travis will fail.
| -rw-r--r-- | Common.mk | 34 |
1 files changed, 17 insertions, 17 deletions
@@ -46,6 +46,23 @@ endif $(call show_config_variable,CURRENT_OS,[AUTODETECTED]) ######################################################################## +# +# Travis-CI +ifneq ($(TEST),) + DEPENDENCIES_DIR = /var/tmp/Arduino-Makefile-testing-dependencies + + DEPENDENCIES_MPIDE_DIR = $(DEPENDENCIES_DIR)/mpide-0023-linux64-20130817-test + ifeq ($(MPIDE_DIR),) + MPIDE_DIR = $(DEPENDENCIES_MPIDE_DIR) + endif + + DEPENDENCIES_ARDUINO_DIR = $(DEPENDENCIES_DIR)/arduino-1.0.6 + ifeq ($(ARDUINO_DIR),) + ARDUINO_DIR = $(DEPENDENCIES_ARDUINO_DIR) + endif +endif + +######################################################################## # Arduino Directory ifndef ARDUINO_DIR @@ -67,20 +84,3 @@ ifeq ($(CURRENT_OS),WINDOWS) echo $(error On Windows, ARDUINO_DIR must be a relative path) endif endif - -######################################################################## -# -# Travis-CI -ifneq ($(TEST),) - DEPENDENCIES_DIR = /var/tmp/Arduino-Makefile-testing-dependencies - - DEPENDENCIES_MPIDE_DIR = $(DEPENDENCIES_DIR)/mpide-0023-linux64-20130817-test - ifeq ($(MPIDE_DIR),) - MPIDE_DIR = $(DEPENDENCIES_MPIDE_DIR) - endif - - DEPENDENCIES_ARDUINO_DIR = $(DEPENDENCIES_DIR)/arduino-1.0.6 - ifeq ($(ARDUINO_DIR),) - ARDUINO_DIR = $(DEPENDENCIES_ARDUINO_DIR) - endif -endif |
